| 12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html>
- <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 rel="stylesheet" href="/passwordResetPages/style.css">
- <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
- </head>
- <body>
- <form action="/reset" method="post">
- <h1>RESET PASSWORD:</h1>
- <input name="password" type="password" placeholder="NEW PASSWORD">
- <input name="confirmPassword" type="password" placeholder="CONFIRM PASSWORD">
- <input name="code" type="hidden" value="<%=code%>">
- <input name="id" type="hidden" value="<%=id%>">
- <input type="submit" value="RESET PASSWORD">
- <a href="/login">CANCEL</a>
- </form>
- </body>
- </html>
|