register.ejs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>The Subline</title>
  6. <link rel="icon" type="img/png" href="/shared/images/logo.png">
  7. <link rel="stylesheet" href="/otherPages/style.css">
  8. <link rel="stylesheet" href="/shared/shared.css">
  9. <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
  10. </head>
  11. <body id="register">
  12. <div class="header">
  13. <a class="headerStart" href="/" >
  14. <img src="/shared/images/logo.png" alt="Subline">
  15. <div class='headerLogo'>THE SUBLINE</div>
  16. </a>
  17. </div>
  18. <form action="/register" method="post">
  19. <h1> Join The Subline </h1>
  20. <label id="nameLabel">Restaurant Name
  21. <input type="text" name="name" required>
  22. </label>
  23. <label>Email
  24. <input type="text" name="email" required>
  25. </label>
  26. <label>Password
  27. <input type="password" name="password" required>
  28. </label>
  29. <label>Confirm Password
  30. <input type="password" name="confirmPassword" required>
  31. </label>
  32. <label id="agreement">
  33. <input type="checkbox" name="agree">
  34. <p>I agree to the
  35. <a class="link" href="/privacy">Privacy Policy</a> and the
  36. <a class="link" href="/terms">Terms and Conditions</a>
  37. </p>
  38. </label>
  39. <input class="buttonDisabled" type="submit" value="Sign Up with Email">
  40. <!-- <h1>OR</h1>
  41. <a class="button buttonWithBorder" href="/cloverlogin">Sign Up with Clover</a>
  42. <a class="button buttonWithBorder" href="/squarelogin">Sign Up with Square</a> -->
  43. <a class="link" href="/login">Already have an account? Please Sign In</a>
  44. </form>
  45. <% include ../shared/footer %>
  46. </body>
  47. </html>