-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot_password.html
136 lines (118 loc) · 2.71 KB
/
forgot_password.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<html>
<head>
<title>Reset password </title>
<style>
body{
background-image:url(images/e.jpg);
}
#form{
position: absolute;
top: 58%;
left: 50%;
transform: translate(-50%, -50%);
width:40%;
margin:auto;
color:black;
padding:3%;
background-color:rgba(60, 209, 77,0.3);
}
input{
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
.button {
background-color: #4CAF50;
border: none;
color: white;
padding-top:3%;
padding-left:49%;
padding-right:41%;
padding-bottom:1%;
padding-top:1%;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
-webkit-transition-duration: 0.4s;
transition-duration: 0.4s;
}
.button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
p{
margin: 0;
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
font-size:24px;
text-align:center;
font-family:"Lucida Handwriting";
font-family:Verdana, Geneva, sans-serif;
text-align:center;
font-size:35px;
font-weight:bolder;
color:black;
}
ul {
width:100%;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #4CAF50;
font-size: 22px;
-webkit-transition-duration: 0.4s;
-moz-transition-duration: 0.4s;
-ms-transition-duration: 0.4s;
}
.active {
background-color: #4CAF50;
}
</style>
</head>
<body>
<div >
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="http://csvtu.ac.in/ew/">CSVTU</a></li>
<li><a href="http://www.gecraipur.ac.in/">GEC Raipur</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="reg.html">Registration</a></li>
<li style="float:right"><a class="active" href="#about">About</a></li>
</ul>
</div>
<p>
Enter your registered email address.<br>
Your password will be mailed to your email address.
</p>
<div id="form">
<form action="forgot.php" method="post">
<label><b>Roll Number*.:</b></label>
<input type="text" placeholder="Enter your roll number." name="roll" required><br>
<label><b>Email Id*.:</b></label>
<input type="text" placeholder="Enter your registered email address." name="email" required><br>
<button class="button" align="center" onclick="location.href='index.html';" ><label>Send</label></button>
</form>
</div>
</body>
</html>