password.ejs 953 B

12345678910111213141516171819202122232425262728
  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/style.css">
  9. <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
  10. </head>
  11. <body>
  12. <form action="/reset" method="post">
  13. <h1>RESET PASSWORD:</h1>
  14. <input name="password" type="password" placeholder="NEW PASSWORD">
  15. <input name="confirmPassword" type="password" placeholder="CONFIRM PASSWORD">
  16. <input name="code" type="hidden" value="<%=code%>">
  17. <input name="id" type="hidden" value="<%=id%>">
  18. <input type="submit" value="RESET PASSWORD">
  19. <a href="/login">CANCEL</a>
  20. </form>
  21. </body>
  22. </html>