registerform.ejs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <link rel="stylesheet" href="/shared/registerform.css">
  2. <div>
  3. <form onsubmit="basicInfoObj.submit()">
  4. <h1> Please Sign Up </h1>
  5. <h3 class="link" onclick="loginObj.display()"> Or Register with Clover </h3>
  6. <label id="nameLabel">Restaurant Name
  7. <input class="input" id="regName" type="text">
  8. </label>
  9. <label>Email
  10. <input type="text" id="regEmail" type="email" required>
  11. </label>
  12. <label>Password
  13. <input type="password" id="regPass" type="password" required>
  14. </label>
  15. <label>Confirm Password
  16. <input type="password" id="regConfirmPass" type="password" required>
  17. </label>
  18. <!-- <input type="submit" value="Continue"> -->
  19. <div id="agreement">
  20. <label class="container">
  21. <input type="checkbox">
  22. <span class="checkmark"></span>
  23. <p style="padding-top: 5px; padding-left: 7px;">I agree to the
  24. <a class="link" href="/information">Privacy Policy</a> and the
  25. <a class="link" href="/information">Terms and Conditions</a></p>
  26. </label>
  27. </div>
  28. <input id="regButton" class="buttonDisabled" type="submit" value="Register">
  29. </form>
  30. </div>