-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
55 lines (27 loc) · 985 Bytes
/
Copy pathindex.php
File metadata and controls
55 lines (27 loc) · 985 Bytes
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
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Pharmaceutical Inventory System for Regis Pharmacy</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body style="background: #262626;">
<br/>
<br/>
<div class="container">
<div id="login-form">
<h3>User Login</h3>
<fieldset>
<form id="form-login">
<input type="text" autofocus id="un" placeholder="Username" required autocomplete="off">
<input type="password" id="up" placeholder="Password" required autocomplete="off">
<input type="submit" name="log" value="Login">
</form>
</fieldset>
</div> <!-- end login-form -->
</div>
<script type="text/javascript" src="assets/js/jquery-1.12.3.js"></script>
<script type="text/javascript" src="assets/js/bootstrap.min.js"></script>
<script type="text/javascript" src="assets/js/regis.js"></script>
</body>
</html>