email.ejs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  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="/passwordResetPages/passwordReset.css">
  9. <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
  10. </head>
  11. <body>
  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 class="headerEnd">
  18. <a id="helpLink" class="headerHide" href="/help">HELP</a>
  19. <a id="privacyPolicyLink" class="headerHide" href="/privacy">PRIVACY POLICY</a>
  20. <a id="termsLink" class="headerHide" href="/terms">TERMS AND CONDITIONS</a>
  21. </div>
  22. </div>
  23. <h1 class="title">Enter your email to reset your password</h1>
  24. <form class="form" action="/reset/email" method="post">
  25. <input class="formInput" name="email" type="email" placeholder="email">
  26. <input class="button" type="submit" value="SEND EMAIL">
  27. </form>
  28. <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>
  29. </body>
  30. </html>