-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -522,19 +522,19 @@ <h1><br>Want to <span>Share</span> or <span>Rent</span> <br>a cab.</h1> | |
|
||
<div class="booking-form"> | ||
<div class="form-group"> | ||
<label for="fullName">Full Name</label> | ||
<label for="fullName">Full Name*</label> | ||
<input type="text" id="fullName" placeholder="Your Name"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="phone">Phone</label> | ||
<label for="phone">Phone*</label> | ||
<input type="tel" id="phone" placeholder="Telephone"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="email">Email</label> | ||
<label for="email">Email*</label> | ||
<input type="email" id="email" placeholder="[email protected]"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="city">City</label> | ||
<label for="city">City*</label> | ||
<select id="city"> | ||
<option disabled selected>Select City</option> | ||
<option value="Delhi-NCR">Delhi-NCR</option> | ||
|
@@ -545,7 +545,7 @@ <h1><br>Want to <span>Share</span> or <span>Rent</span> <br>a cab.</h1> | |
</select> | ||
</div> | ||
<div class="form-group"> | ||
<label for="vehicle">Vehicle</label> | ||
<label for="vehicle">Vehicle*</label> | ||
<select id="vehicle"> | ||
<option disabled selected>Select Vehicle</option> | ||
<option value="Civic">Honda Civic</option> | ||
|
@@ -556,11 +556,11 @@ <h1><br>Want to <span>Share</span> or <span>Rent</span> <br>a cab.</h1> | |
</select> | ||
</div> | ||
<div class="form-group"> | ||
<label for="pickupDate">Pickup Date</label> | ||
<label for="pickupDate">Pickup Date*</label> | ||
<input type="date" id="pickupDate"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="dropoffDate">Drop-off Date</label> | ||
<label for="dropoffDate">Drop-off Date*</label> | ||
<input type="date" id="dropoffDate"> | ||
</div> | ||
</div> | ||
|