-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·45 lines (33 loc) · 1.36 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>User Login</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./css/styles.css" type="text/css">
<!-- external stylesheets -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="heading">
<h1>Inventory Control</h1>
</div>
<div class="container-main">
<form action="user/authenticate.php" method="POST">
<p>Please enter your credentials.</p>
<hr>
<label for="email"><b>User Email</b></label>
<input type="text" placeholder="Enter email" name="email" id="email" required>
<br>
<label for="user_id"><b>User Id      </b></label>
<input type="password" placeholder="Enter user_id" name="user_id" id="user_id" required>
<hr>
<button type="submit" class="button" name="submit">Submit</button>
</form>
<button onclick="window.location.href='./admin/admin.html'" class="button">Login as Admin</button>
</div>
<script src="./js/script.js"></script>
</body>
</html>