-
Notifications
You must be signed in to change notification settings - Fork 0
/
doctors.php
142 lines (126 loc) · 5.37 KB
/
doctors.php
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
<html>
<head>
<title> Doctor World | Doctors </title>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600&subset=cyrillic,latin">
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/header.css">
<link rel="stylesheet" href="assets/css/footer.css">
<link rel="stylesheet" href="assets/plugins/line-icons-pro/styles.css">
<link rel="stylesheet" href="assets/plugins/line-icons/line-icons.css">
<link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/css/custom.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="utils.css">
<link rel="stylesheet" href="service.css">
<link rel="stylesheet" href="About.css">
<link rel="stylesheet" href="custom.css">
<link rel="stylesheet" href="blog_timeline.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="header.css">
<link rel="stylesheet" href="style.css">
</head>
<body class='overflow-x-hidden' style="background-image: url('images/Doctor3.png');">
<div class="container mx-auto">
<header>
<nav class="flex justify-between">
<div class=" Logo font-bold flex items-center text-blue">
<span style="font-size: 20px;">Doctor World</span>
<img src="images/Doctor.png" alt="Doctor" class="Image1" style="height: 80px; width: 80px;">
</div>
<ul class="navbar flex items-center" >
<li><Button class="btn" onClick="location.href='index.php'">Home</Button></li>
<li><Button class="btn" onClick="location.href='Service.php'">Services</Button></li>
<li><Button class="btn" onClick="location.href='About.php'">About Us</Button></li>
<li><Button class="btn" onClick="location.href='Doctors.php'">Doctors</Button></li>
<li><Button class="btn" onClick="location.href='contact.php'">Contact us</Button></li>
<li><Button class="btn" onClick="location.href='registration.php'">Registration</Button></li>
<li><Button class="btn" onClick="location.href='login.php'">Login</Button></li>
<?php
session_start();
if(isset($_SESSION['flag'])) {
if($_SESSION['flag'] == 'Login'){
?>
<li><Button class="btn" onClick="location.href='Appointment.php'">Book Appointment</Button></li>
<li><Button class="btn" onClick="location.href='backend/logout.php'">Logout</Button></li>
<?php
}
}
?>
</ul>
</nav>
</header>
<div class="container content-md team-v1">
<ul class="list-unstyled row">
<li class="col-sm-3 col-xs-6 " style="margin-bottom: 30px;">
<div class="team-img">
<img class="img-responsive" src="assets/img/team/1.jpg" alt="">
</div>
<h3>Dr. Harshil Patel</h3>
<h4>/ Consultant</h4>
<p>Child care</p>
</li>
<li class="col-sm-3 col-xs-6 " style="margin-bottom: 30px;">
<div class="team-img">
<img class="img-responsive" src="assets/img/team/2.jpg" alt="">
</div>
<h3>Dr. Sahil Achhava</h3>
<h4>/ MBBS</h4>
<p>Neurology</p>
</li>
<li class="col-sm-3 col-xs-6">
<div class="team-img">
<img class="img-responsive" src="assets/img/team/3.jpg" alt="">
</div>
<h3>Dr. Dhruv Shah</h3>
<h4>/ MBBS, MS, DNB</h4>
<p>General Surgery</p>
</li>
<li class="col-sm-3 col-xs-6">
<div class="team-img">
<img class="img-responsive" src="assets/img/team/4.jpg" alt="">
</div>
<h3>Dr. Vijeta Kumari</h3>
<h4>/ MBBS</h4>
<p>Health Checkup</p>
</li>
</ul>
<div class="container content-md team-v1" style="margin-left: -13px;">
<ul class="list-unstyled row">
<li class="col-sm-3 col-xs-6 " style="margin-bottom: 30px;">
<div class="team-img">
<img class="img-responsive" src="assets/img/team/5.jpg" alt="">
</div>
<h3>Dr. Yagnesh Patel</h3>
<h4>/ MD</h4>
<p>Dermatology</p>
</li>
<li class="col-sm-3 col-xs-6 " style="margin-bottom: 30px;">
<div class="team-img">
<img class="img-responsive" src="assets/img/team/6.jpg" alt="">
</div>
<h3>Dr. Namita Bhoj</h3>
<h4>/ MBBS,MS, MD</h4>
<p>Eye Specialist</p>
</li>
<li class="col-sm-3 col-xs-6">
<div class="team-img">
<img class="img-responsive" src="assets/img/team/7.jpg" alt="">
</div>
<h3>Dr. Jeel Patel</h3>
<h4>/ MBBS</h4>
<p>CCU & ICU</p>
</li>
<li class="col-sm-3 col-xs-6 " style="margin-bottom: 30px;">
<div class="team-img">
<img class="img-responsive" src="assets/img/team/8.jpg" alt="">
</div>
<h3>Dr. Harman</h3>
<h4>/ MBBS</h4>
<p>Health Checkup</p>
</li>
</ul>
</div>
</div>
</body>
</html>