Advertisement
darryljf

join.tpl - stripped

Mar 24th, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. {extends file="layouts/main.tpl"}
  2. {block name="body"}
  3. <div class="container">
  4.   {if $error}
  5.     <div class="alert alert-danger mx-auto" role="alert">
  6.       {$error}
  7.     </div>
  8.   {/if}
  9.  
  10.   <form action="" method="post">
  11.  
  12.     <div class="form-group">
  13.       <label for="username">Username</label>
  14.       <input type="text" class="form-control form-control-sm" placeholder="Enter Username">
  15.     </div>
  16.     <button type="submit" class="btn w-100">Submit</button>
  17.   </form>
  18.  
  19. </div>
  20.  
  21. {/block}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement