-
Notifications
You must be signed in to change notification settings - Fork 1
/
forgot_passwd.html
66 lines (60 loc) · 1.59 KB
/
forgot_passwd.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
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
<html>
<title>
Password Recovery
</title>
<head>
<center>
<h1> Forget your Password? </h1>
<h2> Don't Panic </h2>
<h3> Come here </h3>
</center>
</head>
<script type=text/javascript>
function errcheck()
{
var reg = location.search.split("?")[1];
var val = reg.split("=")[1];
if (val == "fail")
{
document.write("Either your ceredentials didn't match Or\n");
document.write("You are not a registered user.");
}
}
</script>
<body>
<script type=text/javascript>
errcheck()
</script>
</body>
<fieldset>
<form name=fgtpasswd action="forgot_passwd.php" method="POST">
<table align=center>
<tr>
<td> Enter your username: </td>
<td> <input type=text name=uname value=""> </td>
</tr>
<tr>
<td> Enter your Email: </td>
<td> <input type=text name=email value=""> </td>
</tr>
<tr>
<td> </td>
<td align=right> <input type=submit name=btn value="Reset Password"> </td>
</tr>
</table>
</form>
</fieldset>
</html>
<style>
fieldset
{
/* min-width: auto; */
margin-left: 25%;
display: inline-block;
width: 50%;
}
form
{
-webkit-text-fill-color: darkgoldenrod;
}
</style>