email.ejs 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta content="width=device-width, initial-scale=1" name="viewport"/>
  6. <title>The Subline</title>
  7. <link rel="icon" type="img/png" href="/shared/images/logo.png">
  8. <link rel="stylesheet" href="/shared/shared.css">
  9. <link rel="stylesheet" href="/passwordResetPages/passwordReset.css">
  10. <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
  11. </head>
  12. <body>
  13. <div class="header">
  14. <a class="headerStart" href="/" >
  15. <img src="/shared/images/logo.png" alt="Subline">
  16. <div class='headerLogo'>THE SUBLINE</div>
  17. </a>
  18. <div class="headerEnd">
  19. <a id="helpLink" class="headerHide" href="/help">HELP</a>
  20. <a id="privacyPolicyLink" class="headerHide" href="/privacy">PRIVACY POLICY</a>
  21. <a id="termsLink" class="headerHide" href="/terms">TERMS AND CONDITIONS</a>
  22. </div>
  23. </div>
  24. <h1 class="title">Enter your email to reset your password</h1>
  25. <form class="form" action="/reset/email" method="post">
  26. <input class="formInput" name="email" type="email" placeholder="email">
  27. <input class="button" type="submit" value="SEND EMAIL">
  28. </form>
  29. <p class="text">An email will be sent to you shortly with instructions on reseting your password. If you don't recieve an email within one minute, then try again.</p>
  30. </body>
  31. </html>