forked from pratham0203/lokeshdidwania
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
46 lines (43 loc) · 1.8 KB
/
admin.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Login</title>
<!-- Bootstrap Stylesheet -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- jQuery Library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Latest Compiled and Minified JavaScript -->
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<!-- Template Main CSS File -->
<link href="assets/css/style3.css" rel="stylesheet">
<link href="assets/css/style4.css" rel="stylesheet">
</head>
<body>
<div class="centered">
<div class="loginform container">
<h3 style=>Administrator Area</h3>
<hr />
<!--- Form -->
<form role="form" action="php/adminlogin.php" method="post">
<br>
<div class="form-group">
<input type="text" class="form-control" name="uname" placeholder="Username" required>
</div>
<br>
<div class="form-group">
<input type="password" class="form-control" name="pword" placeholder="Password" required>
</div>
<br>
<div class="form-group">
<button type="submit" class="btn" id="button1" name="submit">Login</button>
</div>
<br>
</form>
</div>
</div>
</body>
</html>