-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmation.html
More file actions
24 lines (24 loc) · 804 Bytes
/
confirmation.html
File metadata and controls
24 lines (24 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<title>CarePlus | Success</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero-section bg-conf">
<div class="overlay"></div>
<div class="content-box">
<div id="confDetails" class="conf-box">
<h2 style="color: #28a745;">✔ Appointment Booked!</h2>
<br>
<p><strong>Patient:</strong> <span id="confName"></span></p>
<p><strong>Doctor:</strong> <span id="confDoc"></span></p>
<p><strong>Time:</strong> <span id="confDateTime"></span></p>
<br>
<a href="index.html" class="btn">Go Home</a>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>