Advertisement
DragonOsman

register.html Pset7

Mar 10th, 2017
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.88 KB | None | 0 0
  1. { % extends "layout.html" % }
  2.  
  3. { % block title % }
  4.     Register
  5. { % endblock % }
  6.  
  7. { % block main % }
  8.     <form action="{{ url_for('register') }}" method="post">
  9.         <fieldset>
  10.             <div class="form-group">
  11.                 <input autocomplete="off" autofocus class="form-control" name="username" placeholder="Username" type="text"/>
  12.             </div>
  13.             <div class="form-group">
  14.                 <input class="form-control" name="password" placeholder="Password" type="password"/>
  15.             </div>
  16.             <div class="form-group">
  17.                 <input class="form-control" name="password confirmation" placeholder="Confirm Password" type="password"/>
  18.             </div>
  19.             <div class="form-group">
  20.                 <input class="btn btn-default" type="submit" value="Register"/>
  21.             </div>
  22.         </fieldset>
  23.     </form>
  24. { % endblock % }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement