-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager.php
47 lines (44 loc) · 1.66 KB
/
manager.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="MMS401D" />
<meta name="author" content="LThibault" />
<title>Employee manager - BikeStores</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Bootstrap icons -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap) -->
<link href="styles/theme.css" rel="stylesheet" />
<!-- Map assets -->
<link rel="stylesheet" href="styles/main.css" />
<script src="scripts/leaflet.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<!-- JQuery for easier API connection -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body id="top">
<!-- Navigation -->
<?php
include_once("www/menu.inc.php");
?>
<!-- Section -->
<section class="py-5">
<div class="container px-4 px-lg-5 mt-5">
<!-- Products -->
<div id="listEmployees" class="row gx-4 gx-lg-5 row-cols-2 row-cols-md-3 row-cols-xl-4 justify-content-center">
</div>
</div>
</section>
<!-- Footer -->
<?php
include_once("www/footer.inc.php");
?>
<!-- Bootstrap core JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- API data JS -->
<script src="scripts/manager.js"></script>
</body>
</html>