-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
51 lines (47 loc) · 2.01 KB
/
admin.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
45
46
47
48
49
50
51
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/normalize.min.css">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/main.css">
<title>Admin || EVOS</title>
</head>
<body>
<div class="wrapper d-flex w-100 h-100 column-gap-3">
<div class="users h-100 bg-white">
<button class="users-btn w-100 fs-5 btn p-3 btn-success">Buyurtmalar</button>
<ul class="users-list d-flex flex-column bg-primary-subtle m-0 bg-white list-unstyled mt-3 row-gap-3"></ul>
</div>
<div class="user-orders order pe-3">
<div class="d-flex justify-content-end">
<div class="p-0">
<button class="order-btn btn btn-danger p-3 fs-5" type="button" data-bs-toggle="modal" data-bs-target="#exampleModal">Ro'yxatdan o'tganlar</button>
</div>
</div>
<div class="order-content d-flex justify-content-between w-100 mt-3 fs-5 fw-semibold shadow rounded-2"></div>
<ul class="order-list d-flex flex-column row-gap-3 my-3 list-unstyled"></ul>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Ro'yxatdan o'tganlar foydalanuvchilar</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<ul class="modal-admin-list d-flex flex-column row-gap-4 list-unstyled"></ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Yopish</button>
</div>
</div>
</div>
</div>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/admin.js"></script>
</body>
</html>