form.ejs 668 B

1234567891011121314151617181920212223
  1. <div>
  2. <form onsubmit="basicInfoObj.submit()">
  3. <h1> Please Sign Up </h1>
  4. <h3 class="link"> Do You need Sign In? </h3>
  5. <label id="nameLabel">Name
  6. <input class="input" id="regName" type="text">
  7. </label>
  8. <label>Email
  9. <input type="text" id="regEmail" type="email" required>
  10. </label>
  11. <label>Password
  12. <input type="password" id="regPass" type="password" required>
  13. </label>
  14. <label>Confirm Password
  15. <input type="password" id="regConfirmPass" type="password" required>
  16. </label>
  17. <input type="submit" value="Continue">
  18. </form>
  19. </div>