-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
48 lines (48 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Pharmacy Management - Login</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<script src="bootstrap/js/jquery.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link rel="shortcut icon" href="images/icon.svg" type="image/x-icon">
<link rel="stylesheet" href="css/index.css">
<script src="js/index.js"></script>
</head>
<body>
<div class="container">
<div class="card m-auto p-2">
<div class="card-body">
<form name="login-form" class="login-form" action="home.php" method="post" onsubmit="return validateCredentials();">
<div class="logo">
<img src="images/prof.jpg" class="profile"/>
<h1 class="logo-caption"><span class="tweak">L</span>ogin</h1>
</div> <!-- logo class -->
<div class="input-group form-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fas fa-user text-white"></i></span>
</div>
<input name="username" type="text" class="form-control" placeholder="username" onkeyup="validate();" required>
</div> <!--input-group class -->
<div class="input-group form-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fas fa-key text-white"></i></span>
</div>
<input name="password" type="password" class="form-control" placeholder="password" onkeyup="validate();" required>
</div> <!-- input-group class -->
<div class="form-group">
<button class="btn btn-default btn-block btn-custom">Login</button>
</div>
</form><!-- form close -->
</div> <!-- cord-body class -->
<div class="card-footer">
<div class="text-center">
<a class="text-light" href="#">Forgot password?</a>
</div>
</div> <!-- cord-footer class -->
</div> <!-- card class -->
</div> <!-- container class -->
</body>
</html>