-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathaddress.html
73 lines (72 loc) · 2.75 KB
/
address.html
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
<!DOCTYPE html>
<!-- Designined by CodingLab - youtube.com/codinglabyt -->
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title> Address & Time-Slot </title>
<link rel="stylesheet" href="css/address.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="image/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="image/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="image/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div class="container">
<div class="title" style="text-align: center;">Add your Complete Address & select Time-Slot</div>
<div class="content">
<form action="#">
<div class="user-details">
<div class="input-box">
<span class="details">Full Name</span>
<input type="text" placeholder="Enter your name" required>
</div>
<div class="input-box">
<span class="details">Pickup Date</span>
<input type="date" placeholder="DD/MM/YYYY" required>
</div>
<div class="input-box">
<span class="details">Email</span>
<input type="text" placeholder="Enter your email" required>
</div>
<div class="input-box">
<span class="details">Phone Number</span>
<input type="text" placeholder="Enter your number" required>
</div>
<div class="input-box">
<span class="details">Complete Address</span>
<input type="text" placeholder="room no., street, landmark" required>
</div>
<div class="input-box">
<span class="details">Pincode</span>
<input type="text" placeholder="000000" required>
</div>
</div>
<div class="gender-details">
<input type="radio" name="gender" id="dot-1">
<input type="radio" name="gender" id="dot-2">
<input type="radio" name="gender" id="dot-3">
<span class="gender-title">Time-Slot</span>
<div class="category">
<label for="dot-1">
<span class="dot one"></span>
<span class="gender">10am-12pm</span>
</label>
<label for="dot-2">
<span class="dot two"></span>
<span class="gender">02pm-05pm</span>
</label>
<label for="dot-3">
<span class="dot three"></span>
<span class="gender">After 5pm</span>
</label>
</div>
</div>
<div class="button">
<a href="askpayment.html" class="button">Submit & Confirm</a>
</div>
</form>
</div>
</div>
</body>
</html>