This repository was archived by the owner on Aug 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.php
More file actions
55 lines (52 loc) · 3.15 KB
/
index.php
File metadata and controls
55 lines (52 loc) · 3.15 KB
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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Login - Point of Sale and Inventory Management System</title>
<meta name="description" content="Point of Sale and Inventory Management System">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&display=swap">
<link rel="stylesheet" href="assets/css/Pricing-Centered-badges.css">
<link rel="stylesheet" href="assets/css/Pricing-Centered-icons.css">
</head>
<body class="bg-gradient-primary">
<div class="container">
<div class="text-center p-4 p-lg-5">
<h1 class="fw-bold mb-4"><span style="color: rgb(255, 159, 14);">KYLE SHOE'S SHOP</span><span style="color: rgb(255, 255, 255);"> POINT OF SALE AND INVENTORY MANAGEMENT SYSTEM</span></h1>
</div>
<div class="row justify-content-center">
<div class="col-md-9 col-lg-12 col-xl-10">
<div class="card shadow-lg o-hidden border-0 my-5">
<div class="card-body p-0">
<div class="row">
<div class="col-lg-6 d-none d-lg-flex">
<div class="flex-grow-1 bg-login-image" style="background: url("assets/img/cool_nike_shoes_golden_ball_blue_background-wallpaper-600x800.jpg");background-size: cover;"></div>
</div>
<div class="col-lg-6" style="padding: 68px;">
<div class="p-5">
<div class="text-center">
<h4 class="text-dark mb-4">Login</h4>
</div>
<form class="user" action="functions/login.php" method="post">
<div class="mb-3"><input class="form-control form-control-user" type="text" id="exampleInputEmail" aria-describedby="emailHelp" placeholder="Username" name="username"></div>
<div class="mb-3"><input class="form-control form-control-user" type="password" id="exampleInputPassword" placeholder="Password" name="password"></div>
<hr>
<div class="mb-3">
<div class="custom-control custom-checkbox small"></div>
</div><button class="btn btn-primary d-block btn-user w-100" type="submit">Login</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="py-4 py-xl-5"></section>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/bs-init.js"></script>
<script src="assets/js/theme.js"></script>
</body>
</html>