-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathform2.html
201 lines (197 loc) · 7.07 KB
/
form2.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<title>Posh Pets</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap5 & custom CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/form.css" />
</head>
<body>
<!-- FORM START -->
<section>
<br /><br />
<div class="container-fluid">
<div class="row">
<div class="col-md-5" id="form-div">
<!-- form -->
<form>
<fieldset>
<br />
<div class="form-group">
<input
type="text"
class="form-control"
id="exampleInputName1"
placeholder="Name"
required
/>
</div>
<br />
<br />
<div class="form-group">
<input
type="email"
class="form-control"
id="exampleInputEmail1"
aria-describedby="emailHelp"
placeholder="Enter email"
required
/>
</div>
<br />
<div class="form-group">
<small id="dateHelp" class="form-text text-muted"
>Reservation Date</small
>
<input
type="date"
class="form-control datepicker"
id="exampleInputName2"
data-date-format="mm/dd/yyyy"
required
/>
</div>
<br />
<div class="form-group">
<small id="timeHelp" class="form-text text-muted"
>Reservation Time</small
>
<input
type="time"
class="form-control"
id="exampleInputName3"
required
/>
</div>
<br /><br />
<div class="form-group">
<select class="form-select" id="exampleSelect1" >
<option>Select a Service</option>
<option>Pet Sitting</option>
<option>Pet Walking</option>
<option>Pet Boarding</option>
<option>Pet Grooming</option>
</select>
</div>
<br><br>
<div class="form-group">
<input
type="number"
class="form-control"
id="exampleInputName4"
placeholder="Number of Hours with Pet"
maxlength="3"
required
/>
</div>
<br /><br />
<button type="submit" class="btn btn-dark" id="btn-submit">
Book Now
</button>
</fieldset>
<br> <p id="appointment"></p>
</form>
<br />
</div>
<div class="col-md-7" id="form-services-div">
<!-- form services -->
<h6 id="on-vacation-h6">Going for a vacation?</h6>
<br><br>
<h1 id="book-h1">Book For <span id="your-pet"> Your Pet</span></h1>
<br><br> <br> <br>
<p id="booking-p">Get premium pet services from our Team at <em>PoshPets</em></p>
<br /> <br>
<div class="row">
<div class="col-sm-6" id="sit">
<div class="card border-light mb-3" style="max-width: 20rem">
<div class="card-body">
<h3
class="flaticon-dog display-3 font-weight-normal text-secondary mb-3"
>
<img src="./images/pet.png" alt="" />
</h3>
<h4 class="card-title">Pet Sitting</h4>
<p class="card-text">
Charges are KShs. 3,000 per hour.
</p>
</div>
</div>
</div>
<div class="col-sm-6" id="walk">
<div class="card border-light mb-3" style="max-width: 20rem">
<div class="card-body">
<h3
class="flaticon-dog display-3 font-weight-normal text-secondary mb-3"
>
<img src="./images/dog-walking.png" alt="" />
</h3>
<h4 class="card-title">Pet Walking</h4>
<p class="card-text">
Charges are KShs. 3,000 per hour.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6" id="board">
<div class="card border-light mb-3" style="max-width: 20rem">
<div class="card-body">
<h3
class="flaticon-house display-3 font-weight-normal text-secondary mb-3"
>
<img src="./images/pet-house.png" alt="" />
</h3>
<h4 class="card-title">Pet Boarding</h4>
<p class="card-text">
Charges are KShs. 6,000 per night.
</p>
</div>
</div>
</div>
<div class="col-sm-6" id="groom">
<div class="card border-light mb-3" style="max-width: 20rem">
<div class="card-body">
<h3
class="flaticon-grooming display-3 font-weight-normal text-secondary mb-3"
>
<img src="./images/grooming.png" alt="" />
</h3>
<h4 class="card-title">Pet Grooming</h4>
<p class="card-text">
Charges are KShs. 5,000 per session.
</p>
</div>
</div>
</div>
</div>
</dv>
</div>
</div>
</section>
<!-- FORM END -->
<!-- jQuery first, then Bootstrap JS, then js scripts -->
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="./js/scripts.js"></script>
</body>
</html>