-
Notifications
You must be signed in to change notification settings - Fork 420
Expand file tree
/
Copy pathMyaccount.html
More file actions
92 lines (89 loc) · 3.97 KB
/
Copy pathMyaccount.html
File metadata and controls
92 lines (89 loc) · 3.97 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to HealHive</title>
<link rel="icon" type="image/x-icon" href="../../img/logo.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="../../css/main.css">
</head>
<body>
<nav>
<ul>
<li><img src="../../img/logo.png"></li>
<li><a href="../../index.html">Home</a></li>
<li><a href="../../Views/Doctor/docindex.html">Doctors</a></li>
<li><a href="../Home/About.html">About Us</a></li>
<li><a href="#contact-section">Contact Us</a></li>
<li><a href="../../index.html">Logout</a></li>
</ul>
</nav>
<div class="jumbotron">
<h2>Welcome to HealHive</h2>
<p class="lead">Where Care Comes First</p>
<a href="#contact-section" class="btn btn-primary btn-large">Learn more</a>
</div>
<div class="row">
<div class="col-md-4">
<img src="../../img/finddoctors.png" alt="Find Doctors">
<h2>Find Doctors</h2>
<p>Get the best in health care with the help of our highly qualified doctors. Click the button below to get started.</p>
<a class="btn btn-default" href="../../Views/Doctor/docindex.html">Find Doctors </a>
</div>
<div class="col-md-4">
<img src="../../img/appointment.jpeg" alt="Create Appointments">
<h2>Create Appointments</h2>
<p>Get started! Your appointment is just a few clicks away.</p>
<a class="btn btn-default" href="../../Views/Appointment/AppointmentIndex.html">Create now</a>
</div>
<div class="col-md-4">
<img src="../../img/statistics.png" alt="View Statistics">
<h2>View Statistics</h2>
<p>Want to know how well we are doing? Check it out yourself.</p>
<a class="btn btn-default" href="../../Views/Statistics/ViewStatistics.html">Show Statistics</a>
</div>
</div>
<br><br><br><br><br>
</body>
<footer>
<main>
<div id="contact-section" class="contact-container">
<form id="contactForm" class="contact-section">
<h2>Contact Us</h2>
<form id="contactForm">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
</div>
<button type="submit">Send Message</button>
</form>
</form>
<div class="contact-details">
<div class="footer-section">
<h4>Contact Us</h4>
<p>Email: support@docappointments.com</p>
<p>Phone: +1 234 567 8900</p>
<p>Address: 123 Health St, Wellness City</p>
</div>
<div class="footer-section">
<h4>Follow Us</h4>
<div class="social-links">
<a href="https://facebook.com" class="social-icon"><i class="fab fa-facebook-f"></i></a>
<a href="https://twitter.com" class="social-icon"><i class="fab fa-twitter"></i></a>
<a href="https://instagram.com" class="social-icon"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</main>
</footer>
</html>