| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta content="width=device-width, initial-scale=1" name="viewport"/>
- <title>The Subline</title>
- <link rel="icon" type="img/png" href="/shared/images/logo.png">
- <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
- <link rel="stylesheet" href="/shared/shared.css">
- <link rel="stylesheet" href="/verifyPage/verify.css">
- </head>
- <body>
- <% include ../shared/header %>
- <% if(banner !== undefined){ %>
- <% include ./banner.ejs %>
- <% } %>
- <h1 class="title">An email has been sent to <%=email%>. Use the link in the email to verify your account.</h1>
- <p class="text">If you did not recieve an email or need to change your email address, enter it below and click submit.</p>
- <form class="form" action="/verify/resend" method="post">
- <input class="email" name="email" type="email" required>
- <input name="id" type="hidden" value="<%=id%>">
- <input class="button" type="submit" value="SUBMIT">
- </form>
- </body>
- <script>
- document.getElementById("helpLink").style.display = "block";
- document.getElementById("privacyPolicyLink").style.display = "block";
- document.getElementById("termsLink").style.display = "block";
- </script>
- <script>
- setTimeout(()=>{
- let banner = document.getElementById("banner");
- if(banner !== null) banner.style.display = "none";
- }, 10000);
- </script>
- </html>
|