-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmation.html
More file actions
125 lines (119 loc) · 4.44 KB
/
confirmation.html
File metadata and controls
125 lines (119 loc) · 4.44 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Crown Dentistry</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
/>
<link rel="icon" type="image/x-icon" href="logo.png" />
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="index.html">
<img
src="logo.png"
width="30"
height="30"
class="d-inline-block align-top"
alt="Crown Dentistry's logo"
/>
Crown Dentistry
</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="services.html"
>Services</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="appointment.html"
>Book an Appointment</a
>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<br />
<h1>Appointment Confirmation</h1>
<p>
Thank you for booking an appointment with us. Your appointment
details are as follows:
</p>
<div class="row">
<div class="col-md-6">
<h4>Personal Information</h4>
<ul>
<li><strong>Name:</strong> Joe Mansour</li>
<li><strong>Email:</strong> joemansour@email.com</li>
<li><strong>Phone Number:</strong> (123) 456-7890</li>
</ul>
</div>
<div class="col-md-6">
<h4>Appointment Details</h4>
<ul>
<li><strong>Doctor:</strong> Dr. Doofenshmirtz</li>
<li><strong>Service:</strong> Dental Checkup</li>
<li><strong>Date:</strong> June 12, 2023</li>
</ul>
</div>
</div>
<p>
We look forward to seeing you at the appointment. If you have
any questions or need to make any changes, please contact us at
the provided email or phone number.
</p>
<a href="index.html" class="btn btn-primary">Back to Home page</a>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.0/dist/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/leaflet@1.7.1/dist/leaflet.js"></script>
<script src="script.js"></script>
</body>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<footer class="footer bg-dark text-light py-3">
<div class="container text-center">
<p>© 2023 Crown Dentistry. All rights reserved.</p>
</div>
</footer>
</html>