Guest User

Untitled

a guest
Jan 5th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. {% block body %}
  2.  
  3. <div class="container">
  4. <div class="row">
  5. <div class="col-md-4 col-md-offset-3">
  6. <h1>{{title}}</h1>
  7. <form action="{% url 'membersapp:signup'%}" method="post" enctype="multipart/form-data">
  8. {% csrf_token %}
  9. <div class="table-responsive">
  10. <table class="table">
  11. <tr >
  12. <th>Username:</th><td><input class="form-control" type="text" name='username'placeholder="Username" required/></td>
  13. </tr>
  14.  
  15. <tr>
  16. <th>Password:</th><td><input class="form-control" type="password" name='password'placeholder="Password" required/></td>
  17. </tr>
  18.  
  19. <tr>
  20. <th>Email:</th><td><input class="form-control" type="text" name='email'placeholder="Email" required/></td>
  21. </tr>
  22.  
  23. <tr>
  24. <th>Firstname:</th><td><input class="form-control" type="text" name='firstname'placeholder="First Name"/></td>
  25. </tr>
  26.  
  27. <tr>
  28. <th>Lastname:</th><td><input class="form-control" type="text" name='lastname'placeholder="Last Name"/></td>
  29. </tr>
  30.  
  31. <tr>
  32. <th>Phone:</th><td><input class="form-control" type="text" name='phone'placeholder="Phone"/></td>
  33. </tr>
  34. </table>
  35. </div>
  36.  
  37. <input class="btn btn-primary" type="submit" value="{{title}}"/>
  38. </form>
  39. </div>
  40. </div>
  41. </div>
  42.  
  43. {% endblock %}
Add Comment
Please, Sign In to add comment