-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout-us.php
163 lines (150 loc) · 5.55 KB
/
About-us.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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
/>
<link rel="stylesheet" href="css/aboutUs.css" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/notifcation.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="css/delete.css" />
<link rel="stylesheet" href="css/doctor2.css" />
</head>
<body>
<header class="header">
<a href="Patient.html" class="logo">
<i class="fas fa-heartbeat"></i> Doctor's Aid
</a>
<nav class="navbar">
<a href="Patient.php"><i class="fa fa-home"></i> Home</a>
<a href="About-us.php"><i class="fa fa-info-circle"></i> About</a>
<a href="profile.php"><i class="fa fa-user"></i> Profile</a>
<div class="icon" onclick="toggleNotifi()">
<a><i class="fas fa-bell"></i></a>
</div>
<div class="notifi-box" id="box">
<h2>Notifications <span>5</span> <span class="X">X</span> </h2>
<div class="notifi-item openModal">
<img src="images/avatar1.png" alt="img" />
<div class="text">
<h4>Elias Abdurrahman</h4>
<p>@lorem ipsum dolor sit amet</p>
</div>
</div>
<div class="notifi-item openModal">
<img src="images/avatar2.png" alt="img" />
<div class="text">
<h4>John Doe</h4>
<p>@lorem ipsum dolor sit amet</p>
</div>
</div>
<div class="notifi-item openModal">
<img src="images/avatar3.png" alt="img" />
<div class="text">
<h4>Emad Ali</h4>
<p>@lorem ipsum dolor sit amet</p>
</div>
</div>
<div class="notifi-item openModal">
<img src="images/avatar4.png" alt="img" />
<div class="text">
<h4>Ekram Abu</h4>
<p>@lorem ipsum dolor sit amet</p>
</div>
</div>
<div class="notifi-item openModal">
<img src="images/avatar5.png" alt="img" />
<div class="text">
<h4>Jane Doe</h4>
<p>@lorem ipsum dolor sit amet</p>
</div>
</div>
</div>
<a href="Faq.html"><i class="fa fa-question-circle"></i> Faq</a>
<a href="sign-up.html" id="button-51"
><i class="fa fa-sign-out"></i>Logout</a
>
</nav>
<div class="modal">
<div class="modalContent">
<span class="close">×</span>
<section class="right-container">
<span>Reply to Notifcation</span>
<textarea name="" id="" cols="30" rows="10"></textarea>
</section>
</section>
</section>
<button class="del" onclick="hideModal()">reply</button>
</div>
</div>
<div id="menu-btn" class="fas fa-bars"></div>
</header>
<section class="about" id="about">
<div class="row">
<div class="image">
<img src="images/about.png" alt="" />
</div>
<div class="content">
<h3>who<span> we are</span></h3>
<p>
Doctors Aid Medical aid scheme is founded and run by collabrating
with doctors to provide affordable quality health care for all as
part of the doctors health system. the comprehensive healthcare
system for all things health by doctors
</p>
<p>
you get to have acsses to out Medical Doctors specialist in a
varaity of fields and well equiped, prepared to come to your rescue
at anytime.
</p>
</div>
</div>
</section>
<section class="feedback" id="feedback">
<h1 class="heading">Send <span>Feedback</span></h1>
<div class="row">
<div class="image">
<img src="images/feedback.jpg" alt="" />
</div>
<form action="">
<h3>share your comment</h3>
<input type="email" placeholder="your email" class="box" />
<textarea class="box">
Your Comment
</textarea
>
<input type="submit" value="Send" class="btn" />
</form>
</div>
</section>
<section class="footer">
<div class="credit"> © copyright reserved 2022</div>
</section>
<div class="foot">
<button class="dark" ><img src="images/moon.png" alt="" id="moon"></button>
</div>
<script src="js/script.js"></script>
<script src="js/dark_mode.js"></script>
<script src="js/main.js"></script>
<script src="js/notifcation.js"></script>
<script src="js/delete.js"></script>
<script src="js/scriptt.js"></script>
<script>
window.addEventListener("load", ()=>{
var dmode = window.localStorage.getItem('dmode');
var icon = document.getElementById("moon");
if(dmode==null){
window.localStorage.setItem('dmode','light');
}
if(dmode=='dark'){
document.body.classList.add("dark-mode");
icon.src="sun.png";
}
});
</script>
</body>
</html>