forked from AyeshaNagdawala/HealthBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drdashboard.html
99 lines (91 loc) · 3.42 KB
/
drdashboard.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DOCTOR DASHBOARD</title>
<link rel="stylesheet" href="static/drdashboard.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>
<!--NAVRBAR-->
<div class="body2">
<input type="checkbox" id="check">
<label for="check">
<div class="options">
<img src="static\bars.svg" alt="" style="height: 35px;">
</div>
</label>
<nav>
<div class="container flex main-nav">
<a href="#" class="company-logo img"><img src="static/logo final.png" alt="company-logo"></a>
<div class="nav-links">
<ul class="flex">
<li><a href="/"class="hover-link">Homepage </a></li>
<!-- <li><a href="/aboutus"class="hover-link">About Us</a></li> -->
<li><a href="/logout"class="hover-link secondary-button">Log Out</a></li>
</ul>
</div>
</div>
</nav>
<div class="doc">
<h2>DOCTOR'S DASHBOARD</h2>
</div>
<div class="sidebar">
<header>DOCTOR'S INFO</header>
<label for="check">
<div class="cancel">
<img src="static\times.svg" alt="" style="height: 30px;">
</div>
</label>
<div class="photo">
<img src="static/women.b.green.svg" alt="">
</div>
<ul>
<li>NAME: {{name}}</li>
<!-- <li>AGE: {{age}}</li> -->
<!-- <li>GENDER: {{gender}}</li> -->
<li>CONTACT NO: {{contact}}</li>
<!-- <li>DOCTOR: {{doctor}}</li> -->
</ul>
</div>
<!--PATIENT PROFILE-->
<section class="Patient-Profiles-Section">
<div class="container">
<div class="patient-area flex">
<div class="patient-card flex">
<h2>Doctor's Profile</h2>
<img src="static/WhatsApp Image 2023-04-28 at 11.06.17 PM.jpeg" alt="TO-DO LIST" style="width:200px ">
<a href="/drdetailsdisplay" class="primary-button">CLICK HERE </a>
</div>
<div class="patient-card flex">
<h2>View Patients</h2>
<img src="static/WhatsApp Image 2023-04-28 at 11.08.14 PM.jpeg" alt="Upload photos" style="width:200px">
<a href="/viewpatients" class="primary-button">CLICK HERE</i></a>
</div>
<!-- <div class="patient-card flex"> -->
<!-- <h2>Suggestions</h2>
<img src="/images/undraw_Documents_re_isxv.png" alt="Upload photos" style="width:63%">
<a href="#" class="secondary-button">CLICK HERE<i class="fa-solid fa-right-long"></i></a>
</div>
<div class="patient-card flex">
<h2>FEATURE 4</h2>
<img src="/images/undraw_Documents_re_isxv.png" alt="history" style="width:63%">
<a href="#" class="secondary-button">Learn More <i class="fa-solid fa-right-long"></i></a>
</div> -->
<!-- <div class="patient-card">
<h2>FEATURE 5 </h2>
<img src="/images/undraw_Documents_re_isxv.png" alt="memories" style="width:63%">
<a href="#" class="secondary-button">CLICK HERE <i class="fa-solid fa-right-long"></i></a>
</div>
<div class="patient-card">
<h2>FEATURE 6</h2>
<img src="/images/undraw_Documents_re_isxv.png" alt="appointment" style="width:63%">
<a href="#" class="ary-button">Learn More <i class="fa-solid fa-right-long"></i></a>
</div> -->
</div>
</div>
</section>
</div>
</body>
</html>