-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot_id.html
29 lines (28 loc) · 989 Bytes
/
forgot_id.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
<!DOCTYPE html>
<html>
<head>
<title>Forgot id</title>
<link rel="stylesheet" type="text/css" href="css/login.css"/>
<script type="text/javascript" src="js/main.js"></script>
<meta charset="utf-8">
<meta name="keywords" content="Login,register,student,Student login">
<meta name="description" content="User and University login or register page.">
<meta name="viewpoint" content="width=device-width,initial-scale=1.0">
</head>
<body>
<div class="loginbox">
<div id="forgot_form">
<form action="forgot_id.php" method="post">
<h1 id="login">Forgot Account</h1>
<p>E-mail</p>
<input type="text" id="mail" name="email" placeholder="Enter E-mail" required>
<p>User Name</p>
<input type="text" id="id" name="sid" placeholder="User Name">
<input type="submit" name="submit" value="login" onclick="validate_st_login()">
<a href="Student-register.html">New User?</a><br>
<a href="forgot_password.html">Forgot password?</a><br>
</form>
</div>
</div>
</body>
</html>