-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheck.html
More file actions
51 lines (50 loc) · 1.76 KB
/
check.html
File metadata and controls
51 lines (50 loc) · 1.76 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Super Admin Dashboard</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container mt-5">
<h2>Transactions</h2>
<table class="table table-striped">
<thead>
<tr>
<th>ID</th>
<th>Nom</th>
<th>Montant</th>
<th>Date</th>
<th>Action</th>
</tr>
</thead>
<tbody id="transactionTable">
<tr>
<td>001</td>
<td>Jean Dupont</td>
<td>50</td>
<td>28/02/2025</td>
<td>
<button class="btn btn-success approve-btn">✔ Approuver</button>
<button class="btn btn-danger reject-btn">✖ Rejeter</button>
</td>
</tr>
<tr>
<td>002</td>
<td>Marie Curie</td>
<td>75</td>
<td>27/02/2025</td>
<td>
<button class="btn btn-success approve-btn">✔ Approuver</button>
<button class="btn btn-danger reject-btn">✖ Rejeter</button>
</td>
</tr>
</tbody>
</table>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>