-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (38 loc) · 1.23 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title id="lib">LIBRARY MANAGEMENT SYSTEM</title>
<meta charset="UTF-8">
<link rel="stylesheet" type= "text/css" href="login.css">
<title>Login Page</title>
</head>
<body class="body">
<h1 class="sys" id="libmanage"><b>LIBRARY MANAGEMENT SYSTEM</b></h1>
<script>
var str ="WELCOME TO OUR LIBRARY MANAGEMENT SYSTEM!!!";
var result = str.fontcolor("blue");
document.getElementById("libmanage").innerHTML = result;
</script>
<form action="validate.php" method="post" class="form">
<div class="login-box">
<h1 class="log">Login</h1>
<div>
<i class="fa fa-user" aria-hidden="true"></i>
<input type="text" placeholder="Adminname"
name="adminname" value="">
</div>
<div>
<i class="fa fa-lock" aria-hidden="true"></i>
<input type="password" placeholder="Password"
name="password" value="">
</div><br>
<input type="checkbox" name="agree">
<label for="agree" class="agg">REMEMBER ME</label>
<br>
<br>
<input class="button" type="submit"
name="login" value="Sign In">
</div>
</form>
</body>
</html>