-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete-booking.html
More file actions
35 lines (32 loc) · 1.24 KB
/
delete-booking.html
File metadata and controls
35 lines (32 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Delete Account</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="delete-account.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Tinos:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="title">Delete Booking</div>
<form action="delete-booking.php" method="POST">
<div class="user-details">
<div class="input-box">
<span class="details">Email Address</span>
<input type="text" id="email" name="email" placeholder="Enter your email">
</div>
<div class="input-box">
<span class="details">Name</span>
<input type="name" id="name" name="name" placeholder="Enter your name">
</div>
</div>
<div class="button">
<input type="submit" value="Delete Booking">
</div>
</form>
</div>
</body>
</html>