-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset.php
47 lines (38 loc) · 971 Bytes
/
reset.php
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
36
37
38
39
40
41
42
43
44
45
46
47
<?php include('server.php') ?>
<!DOCTYPE html>
<html>
<head>
<title>Reset Password</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header">
<h4>Reset Password</h4>
</div>
<form method="post" action="reset.php">
<?php include('errors.php'); ?>
<div class="input-group">
<label>Verify Code</label>
<input type="number" name="code">
</div>
<div class="input-group">
<label>Email</label>
<input type="email" name="Email" value="<?php echo $email; ?>">
</div>
<div class="input-group">
<label>Password</label>
<input type="password" name="password_1">
</div>
<div class="input-group">
<label>Confirm password</label>
<input type="password" name="password_2">
</div>
<div class="input-group">
<button type="submit" class="btn" name="reset_pass">Reset</button>
</div>
<p>
Not yet a member? <a href="register.php">Signup</a>
</p>
</form>
</body>
</html>