-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact.html
427 lines (402 loc) · 18.2 KB
/
contact.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<link rel="stylesheet" href="style5.css">
<script>
function alphaOnly(event) {
var key = event.keyCode;
return((key >= 65 && key <= 90) || key == 8 || key == 32);
};
</script>
</head>
<body>
<div class="wrapper">
<nav class="nav">
<div class="nav-logo">
<a href="index.php"><img src="lgo.png" alt="">
<span>Necromancy Hospital</span>
</div>
<div class="nav-menu" id="navMenu">
<ul>
<li><a href="index.php" class="link active">HOME</a></li>
</ul>
</div>
</nav>
<div class="form-box">
<div class="register-container" id="loginPatient">
<div class="top">
<header>Drop Us a Message</header>
</div>
<form method="post" action="contact.php">
<div class="two-forms">
<div class="input-box">
<input type="text" name="txtName" class="form-control" placeholder="Your Name *" value="" onkeydown="return alphaOnly(event);" required/>
</div>
<div class="input-box">
<input type="email" name="txtEmail" class="form-control" placeholder="Your Email *" value="" required/>
</div>
</div>
<div class="two-forms">
<div class="input-box">
<input type="tel" name="txtPhone" class="form-control" placeholder="Your Phone Number *" value="" minlength="10" maxlength="10" required/>
</div>
</div>
<div>
<div class="input-box">
<textarea name="txtMsg" class="form-control" placeholder="Your Message *" required></textarea>
</div>
</div>
<div class="input-box">
<input type="submit" name="btnSubmit" class="btnRegister" value="Send Message"/>
</div>
</form>
</div>
</div>
</div>
</body>
</body>
</html>
<!DOCTYPE html>
<?php
include('func1.php');
$con = mysqli_connect("localhost", "root", "", "hms");
$doctor = $_SESSION['dname'];
// Function to check if the appointment is prescribed
function isPrescribed($id)
{
global $con;
$query = "SELECT * FROM prescriptiontable WHERE AppID = '$id'";
$result = mysqli_query($con, $query);
return mysqli_num_rows($result) > 0;
}
function isAccepted($id)
{
global $con;
$query = "SELECT * FROM appointment WHERE AppID = '$id' AND doctorStatus=0";
$result = mysqli_query($con, $query);
return mysqli_num_rows($result) > 0;
}
// Function to check if the appointment is cancelled
function isCancelled($id)
{
global $con;
$query = "SELECT * FROM appointment WHERE AppID = '$id' AND userStatus = 0";
$result = mysqli_query($con, $query);
return mysqli_num_rows($result) > 0;
}
if(isset($_GET['accept'])){
$AppID=$_GET['AppID'];
$sql= mysqli_query($con,"UPDATE appointment SET doctorStatus= 0 WHERE AppID = '$AppID'");
if($sql){
echo "<script>alert('Your appointment was successfully accepted.');</script>";
}
}
if (isset($_GET['cancel'])) {
$AppID = $_GET['AppID'];
$query = mysqli_query($con, "UPDATE appointment SET userStatus = 0 WHERE AppID = '$AppID'");
if ($query) {
echo "<script>alert('Your appointment was successfully cancelled.');</script>";
}
}
// if (isset($_GET['accept'])) {
// $AppID = $_GET['AppID'];
// $query = mysqli_query($con, "UPDATE appointment SET userStatus= 1 WHERE AppID = '$AppID'");
// if ($query) {
// echo "<script>alert('Your appointment was successfully Accepted.');</script>";
// }
// }
if (isset($_GET['prescribe'])) {
$AppID = $_GET['AppID'];
$appdate = $_GET['appdate'];
$apptime = $_GET['apptime'];
$disease = $_GET['disease'];
$allergy = $_GET['allergy'];
$prescription = $_GET['prescription'];
$query = mysqli_query($con, "INSERT INTO prescriptiontable(doctor, AppID, appdate, apptime, disease, allergy, prescription) VALUES ('$doctor', '$AppID', '$appdate', '$apptime', '$disease', '$allergy', '$prescription');");
if ($query) {
echo "<script>alert('Prescribed successfully!');</script>";
} else {
echo "<script>alert('Unable to process your request. Try again!');</script>";
}
}
?>
<html lang="en">
<head>
<script src="https://kit.fontawesome.com/2323653b3c.js" crossorigin="anonymous"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style4.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<script>
function validateForm() {
var contactInput = document.forms["searchForm"]["contact"].value;
var numbersOnly = /^\d+$/;
if (contactInput === "" || !contactInput.match(numbersOnly) || contactInput.length !== 10) {
alert("Please enter a valid 10-digit contact number.");
return false;
}
}
</script>
</head>
<body>
<!-- dashboard -->
<div class="sidebar">
<div class="logo-details">
<i class='bx bx-plus-medical'></i>
<span class="logo_name">
<a href="#">
Necromancy Hospital</a>
</span>
</div>
<ul class="nav-links">
<li>
<a class="active" href="#list-dash">
<i class='bx bx-grid-alt'></i>
<span class="links_name">Dashboard</span>
</a>
</li>
<li>
<a href="#list-app" id="list-pat-list" role="tab" data-toggle="list" aria-controls="home">
<i class='bx bx-list-ul'></i>
<span class="links_name">Appointments</span>
</a>
</li>
<li>
<a href="#list-pres" id="list-pres-list" role="tab" data-toggle="list" aria-controls="home">
<i class='bx bx-detail'></i>
<span class="links_name">Prescriptions</span>
</a>
</li>
<li class="log_out">
<a href="logout1.php" onclick="logout()">
<i class='bx bx-log-out'></i>
<span class="links_name">Log out</span>
</a>
</li>
</ul>
</div>
<!-- sections -->
<div class="section-container" id="sections">
<!-- Navbar content -->
<nav class="doc-nav">
<div class="welcome">
<i class='bx bx-menu sidebarBtn'></i>
<span class="admin"><?php echo $_SESSION['dname'] ?></span>
</div>
<div>
<form class="form-group" name="searchForm" onsubmit="return validateForm()" method="post" action="search.php">
<div class="psearch">
<div class="email-field">
<input class="form-control" type="text" placeholder="Enter contact number" aria-label="Search" name="contact">
</div>
<div class="submit-btn">
<input type="submit" class="btn btn-primary" id="inputbtn" name="search_submit" value="Search">
</div>
</div>
</form>
</div>
</nav>
<!-- Default contents and dashboard contents -->
<div class="home-content" id="list-dash">
<div class="overview-boxes">
<div class="box">
<div class="right-side">
<span class="fa-stack fa-2x">
<i class="fa fa-square fa-stack-2x text-primary"></i>
<i class="fa fa-paperclip fa-stack-1x fa-inverse"></i>
</span>
<h4>My Appointments</h4>
<p class="cl-effect-1">
<a href="#app-list" onclick="clickDiv('#list-pat-list')">
View Appointments
</a>
</p>
</div>
</div>
<div class="box">
<div class="right-side">
<span class="fa-stack fa-2x">
<i class="fa fa-square fa-stack-2x text-primary"></i>
<i class="fa fa-list-ul fa-stack-1x fa-inverse"></i>
</span>
<h4>Prescriptions</h4>
<p>
<a href="#list-pres" onclick="clickDiv('#list-pres-list')">
View Prescriptions List
</a>
</p>
</div>
</div>
</div>
</div>
<!-- Appointments view section -->
<div class="home-content" id="list-app">
<table class="app-table">
<thead>
<tr>
<th scope="col">Patient ID</th>
<th scope="col">Appointment ID</th>
<th scope="col">First Name</th>
<th scope="col">Last Name</th>
<th scope="col">Gender</th>
<th scope="col">Email</th>
<th scope="col">Contact</th>
<th scope="col">Appointment Date</th>
<th scope="col">Appointment Time</th>
<th scope="col">Current Status</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<?php
$con = mysqli_connect("localhost", "root", "", "hms");
global $con;
$dname = $_SESSION['dname'];
$query = "SELECT pid, AppID, fname, lname, gender, email, contact, appdate, apptime, userStatus, doctorStatus FROM appointment WHERE doctor = '$dname';";
$result = mysqli_query($con, $query);
while ($row = mysqli_fetch_array($result)) {
$id = $row['AppID'];
$accepted = isAccepted($id);
$cancelled = isCancelled($id);
$prescribed=isAccepted($id);
?>
<tr>
<td><?php echo $row['pid']; ?></td>
<td><?php echo $row['AppID']; ?></td>
<td><?php echo $row['fname']; ?></td>
<td><?php echo $row['lname']; ?></td>
<td><?php echo $row['gender']; ?></td>
<td><?php echo $row['email']; ?></td>
<td><?php echo $row['contact']; ?></td>
<td><?php echo $row['appdate']; ?></td>
<td><?php echo $row['apptime']; ?></td>
<td>
<?php
if ($cancelled) {
echo "Cancelled";
}elseif($accepted){
echo "Accepted";
}elseif($prescribed){
echo "Accepted";
}
else {
echo "Active";
}
?>
</td>
<td>
<?php if (!$cancelled & !$accepted &! $prescribed) { ?>
<a href="doctor-panel.php?AppID=<?php echo $row['AppID'] ?>&cancel=update" onClick="return confirm('Are you sure you want to cancel this appointment?')" title="Cancel Appointment">
<button class="btn btn-primary">Cancel</button>
</a>
<a href="doctor-panel.php?AppID=<?php echo $row['AppID'] ?>&accept=update" onClick="return confirm('Are you sure you want to cancel this appointment?')" title="Cancel Appointment">
<button class="btn btn-primary">Accept</button>
</a>
<a href="prescribe.php?pid=<?php echo $row['pid'] ?>&AppID=<?php echo $row['AppID'] ?>&fname=<?php echo $row['fname'] ?>&lname=<?php echo $row['lname'] ?>&appdate=<?php echo $row['appdate'] ?>&apptime=<?php echo $row['apptime'] ?>&disease=&allergy=&prescription="
title="Prescribe">
<button class="btn btn-primary">Prescribe</button>
</a>
<?php } ?>
</td>
</tr>
<?php } ?>
</tbody>
</table>
<br>
</div>
<!-- Prescription section -->
<div class="home-content" id="list-pres">
<table class="pres-table">
<thead>
<tr>
<th scope="col">Patient ID</th>
<th scope="col">First Name</th>
<th scope="col">Last Name</th>
<th scope="col">Appointment ID</th>
<th scope="col">Appointment Date</th>
<th scope="col">Appointment Time</th>
<th scope="col">Disease</th>
<th scope="col">Allergy</th>
<th scope="col">Prescription</th>
</tr>
</thead>
<tbody>
<?php
$con = mysqli_connect("localhost", "root", "", "hms");
global $con;
$query = "SELECT pid, fname, lname, AppID, appdate, apptime, disease, allergy, prescription FROM prescriptiontable WHERE doctor = '$doctor';";
$result = mysqli_query($con, $query);
if (!$result) {
echo mysqli_error($con);
}
while ($row = mysqli_fetch_array($result)) {
?>
<tr>
<td><?php echo $row['pid']; ?></td>
<td><?php echo $row['fname']; ?></td>
<td><?php echo $row['lname']; ?></td>
<td><?php echo $row['AppID']; ?></td>
<td><?php echo $row['appdate']; ?></td>
<td><?php echo $row['apptime']; ?></td>
<td><?php echo $row['disease']; ?></td>
<td><?php echo $row['allergy']; ?></td>
<td><?php echo $row['prescription']; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function() {
const sidebarBtn = document.querySelector(".sidebarBtn");
const sidebar = document.querySelector(".sidebar");
const sections = document.querySelector("#sections");
const links = document.querySelectorAll(".nav-links li a");
// Show the dashboard section by default
document.getElementById("list-dash").style.display = "block";
document.querySelector(".nav-links li a.active").classList.remove("active");
document.querySelector(".nav-links li a[href='#list-dash']").classList.add("active");
// Hide other sections when the page loads
document.querySelectorAll(".home-content").forEach(function(section) {
if (section.id !== "list-dash") {
section.style.display = "none";
}
});
// Toggle sidebar
sidebarBtn.onclick = function() {
sidebar.classList.toggle("active");
if (sidebar.classList.contains("active")) {
sidebarBtn.classList.replace("bx-menu", "bx-menu-alt-right");
} else {
sidebarBtn.classList.replace("bx-menu-alt-right", "bx-menu");
}
};
// Handle click events for navigation links
links.forEach(function(link) {
link.addEventListener("click", function(event) {
event.preventDefault();
const targetSection = document.querySelector(this.getAttribute("href"));
sections.querySelectorAll(".home-content").forEach(function(section) {
section.style.display = "none";
});
targetSection.style.display = "block";
document.querySelector(".nav-links li a.active").classList.remove("active");
this.classList.add("active");
});
});
});
// logout button code
function logout() {
event.preventDefault();
window.location.href = "logout1.php"; // Redirect to logout1.php
}
// default page contents js
function clickDiv(id) {
document.querySelector(id).click();
}
</script>
</body>
</html>