email.ejs 903 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  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/style.css">
  9. <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
  10. </head>
  11. <body>
  12. <form action="/reset/email" method="post">
  13. <h1>Enter your email:</h1>
  14. <input name="email" type="email" placeholder="email">
  15. <input type="submit" value="SEND EMAIL">
  16. <a href="/login">CANCEL</a>
  17. <p>*An email will be sent to you shortly with instructions on reseting your password. If you don't recieve an email with one minute, then try again.</p>
  18. </form>
  19. </body>
  20. </html>