-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforgot_reset.php
More file actions
22 lines (22 loc) · 951 Bytes
/
forgot_reset.php
File metadata and controls
22 lines (22 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles/styles.css?cache=1">
<title>Reset your password</title>
</head>
<body>
<div class="vertical_centered_box" align="center">
<h2 class="title">Convenient Business Tools</h2>
<br/>
<div class="form_container" align="center">
<form method="post" action="login.php">
<div align="left"><a href="forgot_code.php">< Back</a></div>
<br/><div>Enter your new password.</div>
<p><input type="password" placeholder="New Password" name="password"></p>
<p><input type="password" placeholder="Confirm New Password" name="cpassword"></p>
<input type="submit" class="submit" value="Proceed to login" />
</form>
</div>
</div>
</body>
</html>