register.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1> Register Here! </h1>
  4. <form method="POST">
  5. <div class="form-group">
  6. <label for="email"></label>
  7. <input
  8. type="email"
  9. class="form-control"
  10. id="email"
  11. name="email"
  12. placeholder="Insert Email"
  13. />
  14. <label for="passwd_1"></label>
  15. <input
  16. type="password"
  17. class="form-control"
  18. id="passwd_1"
  19. name="passwd_1"
  20. placeholder="Enter Password"
  21. />
  22. <label for="passwd_2"></label>
  23. <input
  24. type="password"
  25. class="form-control"
  26. id="passwd_2"
  27. name="passwd_2"
  28. placeholder="Confirm Password"
  29. />
  30. <label for="firstname"></label>
  31. <input
  32. type="text"
  33. class="form-control"
  34. id="firstname"
  35. name="firstname"
  36. placeholder="Insert First Name"
  37. />
  38. <label for="lasstname"></label>
  39. <input
  40. type="text"
  41. class="form-control"
  42. id="lasstname"
  43. name="lastname"
  44. placeholder="Insert Last Name"
  45. />
  46. <label for="age"></label>
  47. <input
  48. type="number"
  49. class="form-control"
  50. id="age"
  51. name="age"
  52. min="18"
  53. max="110"
  54. placeholder="Insert Your Age"
  55. />
  56. <label for="genderm" class="padding-top">Male</label>
  57. <input
  58. type="radio"
  59. class="form-control"
  60. id="genderm"
  61. name="gender"
  62. value="M"
  63. />
  64. <label for="genderf" style="display: inline;">Female</label>
  65. <input
  66. type="radio"
  67. class="form-control"
  68. id="genderf"
  69. name="gender"
  70. value="F"
  71. />
  72. </div>
  73. <br />
  74. <button type="submit" class="btn btn-primary">Submit</button>
  75. </form>
  76. {% endblock %}