email.ejs 1.3 KB

12345678910111213141516171819202122232425262728293031
  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. <% include ../shared/header %>
  14. <h1 class="title">Enter your email to reset your password</h1>
  15. <form class="form" action="#" method="post">
  16. <input class="email" name="email" type="email" placeholder="email">
  17. <input class="button" type="submit" value="SEND EMAIL">
  18. </form>
  19. <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>
  20. <script>
  21. document.getElementById("helpLink").style.display = "block";
  22. document.getElementById("privacyPolicyLink").style.display = "block";
  23. document.getElementById("termsLink").style.display = "block";
  24. </script>
  25. </body>
  26. </html>