forked from AyeshaNagdawala/HealthBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
approve.html
60 lines (56 loc) · 2.01 KB
/
approve.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
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="static/approve.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
</head>
<body>
<header class="header">
<a href="#" class="logo">
<img src="static/logofinal.png">
</a>
<nav class="nav-items">
<a href="#">Home</a>
<a href="#">About us</a>
<a href="#">Issue/Request</a>
<div class="loginbutton">
<button>
<a href="/admindashboard">Dashboard</a>
</button>
</div>
</nav>
</header>
<div class="main-container shift container-fluid py-5 text-center">
<h1>Approve</h1>
<br>
<div class="table-responsive">
<table class="border container p-5 table table-hover">
<thead>
<tr>
<th>User ID
<th>Username
<th>Contact Number
<th>Gender
<th>Speciality
<th>Registeration Number
<th>ID Link
<th>Verification
<th>Change
<tbody>{% for i in accounts %} <tr>
<td>{{ i.id }}
<td>{{ i.name }}
<td>{{ i.contact }}
<td>{{ i.gender }}
<td>{{ i.speciality }}
<td>{{ i.regno }}
<td>
<a href="{{ i.idlink }}">VIEW</a>
<td>{{ i.is_verified }}
<td>
<a href="/approveupdate?doctor_id={{ i.id }}">Change</a>
</tr>{% endfor %}
</table>
<div></div>
</body>
</html>