-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgotpassword.php
54 lines (45 loc) · 1.51 KB
/
forgotpassword.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
48
49
50
51
52
53
54
<!DOCTYPE HTML>
<html>
<head>
<link rel="shortcut icon" href="images/shirtlogo.png" type="image/x-icon">
<link href="styles/template.css" type="text/css" rel="stylesheet">
<link href="styles/khor.css" type="text/css" rel="stylesheet">
<title>Forgot Password Page</title>
</head>
<body class="bg-ruby">
<div class="center-in-page-abs">
<div class="login-logo">
<a href="index.php">
<img src="images/logo.png" alt="ChapalangClothing">
</a>
</div>
<form action="reset_password.php" method="POST">
<div class="login-area container">
<div class="flex login-header">
<div>
<h1>Forgot Password?</h1>
</div>
<div class="flex login-header-link">
<div class="cultured-dark login-pad-top">
Already have an account? | <a href="loginpage.php" class="ruby visited-ruby">Login</a>
</div>
</div>
</div>
<div class="p-2">
<h3>Please enter your email here</h3>
<input type="email" name="email" placeholder="E-Mail" required>
<br><br>
<select name="userrole" id="userrole" required>User Role :
<option value="" selected disabled>User Role</option>
<option value="member">Member</option>
<option value="vendor">Vendor</option>
</select>
<br><br>
<input type="submit" value="SEND E-MAIL">
</div>
</div>
</form>
</div>
</body>
<script src="scripts/khor.js"></script>
</html>