-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprototype.html
More file actions
32 lines (32 loc) · 1.26 KB
/
prototype.html
File metadata and controls
32 lines (32 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Login Page</title>
<link rel="stylesheet" href="prototype.css">
</head>
<body class="container">
<div class="intro">
<h1>Welcome to Library Management system</h1>
</div>
<div class="edit">
<form method="post" action="http:localhost//Programs/library management system\validation.php">
<div class="details">
<h1>Login</h1>
<h4>For admin login go to link <a href="admin.html">Admin login</a></h4>
<div> <label for="user">Enter User_ID: </label> <br><br> <input id="useremail" type="text" name="user" value="" placeholder="enter username" required></div>
<br>
<div> <label for="password">Enter Password:</label><br><br> <input id="password" type="password" name="password" value="" placeholder="password"required></div>
<br>
<div class="Login">
<input type="submit" name="Login" value="Login">
<input type="reset" name="Reset" value="Reset"><br>
</div>
<!-- <div class="pass"><br><a href="#forgetpassword">Froget Password?</a><br><br> -->
Don't have account?<a href="signup.html">sign up!</a>
</div>
</div>
</form>
</div>
</body>
</html>