-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirm.html
More file actions
24 lines (23 loc) · 845 Bytes
/
Copy pathconfirm.html
File metadata and controls
24 lines (23 loc) · 845 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>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>eRaahi | Confirmation</title>
<link rel="stylesheet" href="style.css" />
<script defer src="script.js"></script>
</head>
<body>
<div class="background">
<div class="gradient-bg"></div>
<img src="https://cdn.pixabay.com/photo/2016/10/10/15/31/city-1724067_1280.png" class="skyline">
<img src="https://cdn-icons-png.flaticon.com/512/888/888879.png" class="bus">
</div>
<main class="glass confirm">
<h2>Ride Confirmation</h2>
<div class="ticket" id="ticket"></div>
<button onclick="confirmBooking()">Confirm Booking</button>
<button class="secondary" onclick="location.href='booking.html'">← Back</button>
</main>
</body>
</html>