|
|
@@ -0,0 +1,31 @@
|
|
|
+<!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="/shared/shared.css">
|
|
|
+ <link rel="stylesheet" href="/passwordResetPages/passwordReset.css">
|
|
|
+ <link href="https://fonts.googleapis.com/css?family=Saira&display=swap" rel="stylesheet">
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+ <% include ../shared/header %>
|
|
|
+
|
|
|
+ <h1 class="title">Reset Password</h1>
|
|
|
+
|
|
|
+ <form class="form" action="" method="post">
|
|
|
+ <input name="password" type="password" class="formInput" placeholder="password">
|
|
|
+
|
|
|
+ <input name="confirmPassword" type="password" class="formInput" placeholder="confirm password">
|
|
|
+
|
|
|
+ <input class="button" type="submit" value="RESET PASSWORD">
|
|
|
+ </form>
|
|
|
+
|
|
|
+ <script>
|
|
|
+ document.getElementById("helpLink").style.display = "block";
|
|
|
+ document.getElementById("privacyPolicyLink").style.display = "block";
|
|
|
+ document.getElementById("termsLink").style.display = "block";
|
|
|
+ </script>
|
|
|
+ </body>
|
|
|
+</html>
|