-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.html
More file actions
49 lines (48 loc) · 1.18 KB
/
Copy pathuser.html
File metadata and controls
49 lines (48 loc) · 1.18 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
42
43
44
45
46
47
48
49
<html>
<head>
<title>User Page</title>
<link rel="stylesheet" href="Admin.css">
<script src="jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#vd1').click(function(){
$.get('viewdoctor.php',function(result){
$('#User').css('display','none');
$('#resp').html(result);
});
});
});
</script>
</head>
<style>
.select {
width: 150px;
padding: 10px 10px;
border: none;
border-radius: 3px;
background-color: #f1f1f1;
}
</style>
<body>
<nav class="nav-main">
<ul>
<li class="active">
<span id="vd1" style="cursor:pointer" class="nav-item">View Doctors</span>
</li>
<li>
<a href="#" class="nav-item">Make Requset</a>
</li>
<li >
<a href="#" class="nav-item">Give Feedback</a>
</li>
<li>
<a href="e-healthcare.html" class="nav-item">Logout</a>
</li>
</ul>
</nav>
<div id="resp" style="border:none; position: absolute; margin:100px 0px 5% 0px;width:100%;">
</div>
<div id="User">
</div>
</body>
</html>