-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirmation.html
More file actions
22 lines (22 loc) · 814 Bytes
/
confirmation.html
File metadata and controls
22 lines (22 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Appointment Confirmation</title>
<link rel="stylesheet" href="confirmation.css">
<script src="confirmation.js"></script>
</head>
<body>
<div class="container">
<div class="confirmation-box">
<h2>Thanks for Booking</h2>
<img src= "images/download.png" alt="Check Mark" class="check-icon">
<p>Appointment ID: <span id="appointment-id">K02</span></p>
<p>Time: <span id="appointment-time">20:00 pm</span></p>
<p>Date: <span id="appointment-date">20.03.2024</span></p>
<button id="ok-btn"><a href="appointment.php">OK</a></button>
</div>
</div>
</body>
</html>