-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
56 lines (56 loc) · 1.7 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
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<!--link rel="stylesheet" href="https://bootswatch.com/3/flatly/bootstrap.min.css"-->
<title>EMS | user login</title>
</head>
<body>
<div class="container">
<marquee><strong><h3>Employee Management System</h3></strong></marquee>
<hr/>
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="jumbotron">
<h4>Provide your Credentials To Login</h4>
<form action="user_login_action.php" method="post">
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-user"></i></span>
<input id="user_id" type="text" class="form-control" name="user_id" placeholder="user_id" required/>
</div>
<div class="input-group">
<span class="input-group-addon"><i class="glyphicon glyphicon-lock"></i></span>
<input id="password" type="password" class="form-control" name="password" placeholder="Password" required/>
</div>
<br/>
<div class="input-group">
<input type="submit" value="Login" class="btn btn-sm btn-primary">
<a href="#" class="btn btn-sm btn-default">Forgot password?</a>
</div>
</form>
</div>
</div>
<div class="col-md-3"></div>
</div>
<div>
<p class="text-right">
<a href="admin/" class="btn btn-link">Admin Login</a>
</p>
</div>
<hr/>
<div class="footer">
<div class="container">
<p class="text-center navbar nav navbar-fixed-bottom">
Employee Management System | Powered By Bootstrap<br/>
© | 2018-19<br/>
Version 1.0.1
</p>
</div>
</div>
</div>
</body>
</html>