verify.ejs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  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 href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
  9. <link rel="stylesheet" href="/shared/shared.css">
  10. <link rel="stylesheet" href="/verifyPage/verify.css">
  11. </head>
  12. <body>
  13. <% include ../shared/header %>
  14. <h1 class="title">An email has been sent to <%=email%>. Use the link in the email to verify your account.</h1>
  15. <p class="text">If you did not recieve an email or need to change your email address, enter it below and click submit.</p>
  16. <form class="form" action="/verify/resend" method="post">
  17. <input class="email" name="email" type="email" required>
  18. <input name="id" type="hidden" value="<%=id%>">
  19. <input class="button" type="submit" value="SUBMIT">
  20. </form>
  21. </body>
  22. <script>
  23. document.getElementById("helpLink").style.display = "block";
  24. document.getElementById("privacyPolicyLink").style.display = "block";
  25. document.getElementById("termsLink").style.display = "block";
  26. </script>
  27. </html>