37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<link href="../assets/hard-disk.ico" rel="icon" type="image/x-icon">
|
|
<link href="../css/reset_password.css" rel="stylesheet">
|
|
<link href="../css/transition.css" rel="stylesheet">
|
|
<title>Reset Password</title>
|
|
</head>
|
|
<body onload="fadeIn()">
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>RESET</h1>
|
|
<h1>YOUR PASSWORD</h1>
|
|
</div>
|
|
<form class="login-form" id="resetPasswordForm">
|
|
<div class="login-form-title">
|
|
<h2>Reset Password</h2>
|
|
<hr>
|
|
</div>
|
|
<div class="login-form-content">
|
|
<input name="email" placeholder="Email" type="email" required>
|
|
<input name="newPassword" placeholder="New Password" type="password" required>
|
|
</div>
|
|
<div class="login-form-footer">
|
|
<button id="backToLogin" name="backToLogin" type="button">Back to Login</button>
|
|
<button id="resetPassword" name="resetPassword" type="submit">Reset Password</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<script src="../js/reset_password.js"></script>
|
|
<script src="../js/helpers.js"></script>
|
|
</body>
|
|
</html>
|