-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_login.php
30 lines (27 loc) · 1.15 KB
/
admin_login.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<form class="form-signin" action="admin_login_result.php" method="post">
<h2 class="form-signin-heading">Please sign in</h2>
<label for="inputemail" class="sr-only">email</label>
<input type="text" id="inputemail" class="form-control" placeholder="email" required autofocus name="email">
<label for="inputPa ssword" class="sr-only">Password</label>
<input type="password" id="inputPassword" class="form-control" placeholder="Password" required name="password">
<div class="checkbox">
<label>
<input type="checkbox" value="remember-me"> Remember me
</label>
</div>
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
</form>
</div>
</body>
</html>