Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <form action="#" id="registration">
  2. <h1>Register an Account</h1>
  3.  
  4. <p>
  5. <label for="username">Username:</label>
  6. <input type="text" id="username" name="username" />
  7. </p>
  8.  
  9. <p>
  10. <label for="password1">Password:</label>
  11. <input type="password" id="password1" name="password1" />
  12. </p>
  13.  
  14. <p>
  15. <label for="password2">Confirm Password:</label>
  16. <input type="password" id="password2" name="password2" />
  17. </p>
  18.  
  19. <p>
  20. <input type="radio" id="genderM" name="gender" value="male" />
  21. <label for="genderM">Male</label>
  22. </p>
  23.  
  24. <p>
  25. <input type="radio" id="genderF" name="gender" value="female" />
  26. <label for="genderF">Female</label>
  27. </p>
  28.  
  29. <p>
  30. <label for="continent">Your Continent</label>
  31. <select name="continent" id="continent">
  32. <option value="">Choose Your Continent</option>
  33. <option value="africa">Africa</option>
  34. <option value="northamerica">North America</option>
  35. <option value="southamerica">South America</option>
  36. <option value="antarctica">Antarctica</option>
  37. <option value="asia">Asia</option>
  38. <option value="australia">Australia</option>
  39. <option value="europe">Europe</option>
  40. </select>
  41. </p>
  42.  
  43. <p>
  44. <label for="desc">Describe yourself</label>
  45. <textarea name="description" id="desc" cols="30" rows="10"></textarea>
  46. </p>
  47.  
  48. <p>
  49. <button type="submit" id="register">Register!</button>
  50. </p>
  51.  
  52. </form>
  53.  
  54. <div id="errorMessages"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement