-
Notifications
You must be signed in to change notification settings - Fork 1
/
forgot-password.html
53 lines (53 loc) · 2.25 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
<!DOCTYPE html>
<head>
<title>Forgot Password</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet" type="text/css">
<link href="css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css">
<link href="css/templatemo_style.css" rel="stylesheet" type="text/css">
<link rel="icon" type="image/png" href="/dbms/logo/logo.png">
</head>
<body class="templatemo-bg-gray">
<div class="containerREG">
<div class="col-md-12">
<h1 class="margin-bottom-15">Password Reset</h1>
<form class="form-horizontal templatemo-forgot-password-form templatemo-container" role="form" action="forgot-password.php" method="post">
<div class="form-group">
<div class="col-md-12">
Please enter your Roll no. / Faculty ID.(We'll contact you shortly via email)
</div>
</div>
<div class="form-group">
<div class="col-md-6">
<select id="type" class="form-control" required name="type">
<option value="">You are...</option>
<option value="faculty">Faculty member</option>
<option value="student">Student</option>
</select>
</div>
<div class="col-md-6">
<input type="text" class="form-control" id="type" required name="id"
placeholder="Your Roll no. / Faculty ID">
</div>
</div>
<div class="form-group">
<div class="col-md-12">
<input type="submit" value="Submit" class="btn btn-danger">
<br><br>
<a href="login.html">Login</a>
</div>
</div>
</form>
</div>
</div>
<div id="footer">
Developed By: Prateek Prasher and Arnav Dhiman, CSED NIT-Hamirpur
<br>Found a bug ? <a href="contact/contact.html">Contact us.</a>
</div>
</body>
</html>