-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatient-view.html
More file actions
42 lines (40 loc) · 2.12 KB
/
Copy pathpatient-view.html
File metadata and controls
42 lines (40 loc) · 2.12 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>SG Enable Health Portal</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>SG Enable Health Portal</h1>
<div class = "navbar">
<nav>
<ul>
<li><a href="patient-view.html">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle">Listings</a>
<select action = "general.php" method = "get" id = "selected_options" name = "selected_options" class="dropdown-menu">
<option id = "selected_options" name = "selected_options" value = "General Practitioner">General Practitioner </option>
<option id = "selected_options" name = "selected_options" value = "Neurology">Neurology </option>
<option id = "selected_options" name = "selected_options" value = "Urology">Urology </option>
<option id = "selected_options" name = "selected_options" value ="Cardiology">Cardiology </option>
<option id = "selected_options" name = "selected_options" value ="Paediatrics">Paediatrics </option>
<option id = "selected_options" name = "selected_options" value ="Obs&Gyn">Obs&Gyn </option>
<option id = "selected_options" name = "selected_options" value ="Geriatrics">Geriatrics </option>
</select>
<script>
var select = document.getElementById("selected_options");
select.addEventListener("change", function() {
window.location.href = "General.php?selected_options=" + select.value;
});
</script>
</li>
<li><a href="about-us-patient-view.html">About Us</a></li>
<li><a href="contact-us-patient-view.html">Contact Us</a></li>
</ul>
</nav>
</div>
</header>
</body>
</html>