-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset.html
35 lines (27 loc) · 1.03 KB
/
reset.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>Reset Password</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div id="wrapper2" class="special">
<div id="form-container">
<h1>Reset Password</h1>
<form action="reset.php" method="POST">
<label for="uname">Username</label>
<input type="text" placeholder="Enter Username" name="uname">
<label for="psw1">New Password</label>
<input type="password" placeholder="Enter Password" name="psw1">
<label for="psw2">Re-Enter Password</label>
<input type="password" placeholder="Re-Enter Password" name="psw2">
<input type="submit" name="reset" value="Reset" />
<div id="link-container">
<a href="login.php" title="Cancel">Cancel</a>
<a href="register.html" title="Register">Register</a>
</div>
</form>
</div>
</div>
</body>
</html>