-
Notifications
You must be signed in to change notification settings - Fork 52
/
user_forgot_pwd.php
93 lines (93 loc) · 2.11 KB
/
user_forgot_pwd.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<title>User Forgot Password</title>
</head>
<style>
div {
width: 40%;
height: 100%;
text-align: center;
position: relative;
margin-right: 30%;
margin-left: 30%;
vertical-align: middle;
font-size: 30px;
border: 4px solid #009999;
padding-top: 30px;
padding-bottom: 30px;
border-radius: 20px;
}
body {
background-color: #d9d9d9;
background-position: right top;
background-attachment: fixed;
background-size: cover;
}
button {
background-color: #009999;
border: 1px solid #a6a6a6;
border-radius: 10px;
box-shadow: 2px 2px #a6a6a6;
}
.input {
font-size: 22px;
text-align: center;
opacity: 0.5;
}
table {
width: 100%;
}
td {
text-align: center;
}
button:link, button:visited
{
text-decoration: none;
}
button:hover, button:active
{
background-color: #e6b800;
border: 1px solid #a6a6a6;
border-radius: 10px;
box-shadow: 2px 2px #a6a6a6;
font-size: 28px;
}
input:hover, input:active
{
background-color: #8c8c8c;
box-shadow: 2px 2px #a6a6a6;
}
</style>
<body>
<?php $email = 0;
$dob = 0;
?>
<br><br><br><br><br><br><br><br><br><br>
<div style="background-color: #f2f2f2;">
<table>
<tr>
<td colspan="2"><p style="font-size: 35px; font-family: 'Times New Roman', serif; color: #009999;"><b>User Forgot Password</b></p></td>
</tr>
<tr>
<td><br></td>
</tr>
<form action="user_forgot_pwd1.php" method="post">
<tr>
<td>Enter User Email address: </td>
<td><input class="input" type="email" name="email" placeholder="Enter email address" required></td>
</tr>
<tr><td><br></td>
</tr>
<tr>
<td>Enter Date Of Birth:</td>
<td> <input class="input" type="date" name="dob" required></td>
</tr>
<tr><td><br></td></tr>
<tr>
<td colspan="2"><input style="font-size: 28px; background-color: #009999; border: 1px solid #a6a6a6; box-shadow: 2px 2px #a6a6a6; color: white; border-radius: 10px;" type="submit" value="Recover Password"></td>
</tr>
</form>
</table>
</body>
</html>