-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·44 lines (37 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<title>Index OMS | Acceuil</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link rel="stylesheet" href="../css/send_order.css">
<style>
body {
background-image: url('../body-background.jpg');
background-size: cover; /* Optional: Adjusts the image size to cover the entire background */
background-repeat: no-repeat; /* Optional: Prevents image from repeating */
}
</style>
</head>
<body >
<nav class="navbar navbar-dark">
<span class="navbar-brand mb-0 h1"><i class="fab fa-asymmetrik"></i> Order Management Plateform</span>
<span class="navbar-text">
<i class="fas fa-user"></i> <span class="client-name">Admin01</span>
</span>
</nav>
<img src="../assets/header-bg.png" width="100%">
<div class="title">Dashboard:</div>
<div class="wraper">
<div class="btn-wraper">
<button type="button" class="btn btn-primary send-btn" id="ls-order" >Liste les commandes</button>
<button type="button" class="btn btn-primary send-btn" id="conf-order">Confirmmer des commandes</button>
<button type="button" class="btn btn-primary send-btn" id="del-order">Supprimer une Commande</button>
<button type="button" class="btn btn-primary send-btn" id="sav-order">Enregister une commande</button>
</div>
</div>
</div>
<script src="../js/pages.js"></script>
</body>
</html>