-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallAppoinments.html
103 lines (102 loc) · 3.58 KB
/
allAppoinments.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
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>All Appoinments</title>
<!-- CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Boostrap -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<!-- Swiftty -->
<link href="https://cdn.jsdelivr.net/npm/swiffy-slider@1.6.0/dist/css/swiffy-slider.min.css" rel="stylesheet" crossorigin="anonymous" />
</head>
<body>
<!-- nav container -->
<nav class="d-flex justify-content-around align-items-center p-3">
<div class="logo-container d-flex align-items-center gap-2">
<img src="./images/stethoscope 1.png" alt="logo" />
<h3>Smart Clinic</h3>
</div>
<div class="menu-container d-flex gap-3">
<li class="manu"><a class="text-decoration-none text-dark" href="index.html">Home</a></li>
<li class="manu">Services</li>
<li class="manu">Contact</li>
<li class="manu"><a class="text-decoration-none text-dark" href="login.html">Login</a></li>
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">User</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="./userDetails.html">Profile</a></li>
<li><a class="dropdown-item" href="./allAppoinments.html">All appoinments</a></li>
<li onclick="handlelogOut()">
<a class="dropdown-item">logout</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="user-appoinments">
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>symptom</th>
<th>type</th>
<th>status</th>
<th>doctor</th>
<th>fees</th>
<th>action</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
</table>
</div>
<footer class="row">
<div class="col-md-6 px-5">
<small
>Copyright smartcare © All rights <br />
reserved</small
>
<p class="fw-bolder">Follow Us</p>
<img src="./images/LinkedIn.png" alt="" />
<img src="./images/YouTube.png" alt="" />
<img src="./images/LinkedIn.png" alt="" />
</div>
<div class="col-md-3">
<h6 class="fw-bolder">Company</h6>
<p>About</p>
<p>Contacat Us</p>
<p>Career</p>
<p>Culture</p>
<p>Blog</p>
</div>
<div class="col-md-3">
<h6 class="fw-bolder">Support</h6>
<p>Getting Start</p>
<p>Service</p>
<p>Chat Center</p>
<p>Report a Blog</p>
<p>Server Stutus</p>
</div>
</footer>
<!-- script file -->
<script src="./app.js"></script>
<script src="./docDetail.js"></script>
<script src="./auth.js"></script>
<script src="./allAppoinments.js"></script>
<!-- Boostrap -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
<!-- Swiffty -->
<script src="https://cdn.jsdelivr.net/npm/swiffy-slider@1.6.0/dist/js/swiffy-slider.min.js" crossorigin="anonymous" defer></script>
</body>
</html>