forked from AyeshaNagdawala/HealthBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
display_medicine.html
55 lines (45 loc) · 1.87 KB
/
display_medicine.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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap" rel="stylesheet">
<link href="static/display_medicine.css" rel="stylesheet">
<title>Medicine Details</title>
</head>
<body>
<nav>
<div class="container flex main-nav">
<a href="#" class="company-logo img"><img src="static/logofinal.png" alt="company-logo"></a>
<div class="nav-links">
<ul class="flex">
<li><a href="homepage.html"class="hover-link">Homepage </a></li>
<li><a href="/patientdashboard" class="hover-link">Dashboard </a></li>
<li><a href="about-us.html"class="hover-link">About Us <i class="fa-sharp fa-solid fa-angle-down"></i></a></li>
<li><a href="#"class="hover-link secondary-button">Sign In</a></li>
<li><a href="#"class="hover-link primary-button">Sign Up</a></li>
</ul>
</div>
</div>
</nav>
<div class="section">
<div class="header">
<h2>MEDICINE DETAILS</h2>
</div>
<table>
<thead>
<tr>
<th>MEDICINE</th>
<th>DATE</th>
</tr>
</thead>
<tbody>
{% for i in list %}
<tr>
<td>{{i[0]}}</td>
<td>{{today}}</td>
{% endfor %}
</tbody>
</table>
</div>
</div>
</body>
</html>