-
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.
Merge pull request #272 from prishsha/main
Adding a Pop-up notification if any field is Empty
- Loading branch information
Showing
3 changed files
with
92 additions
and
77 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 |
---|---|---|
|
@@ -771,19 +771,19 @@ <h2>Cab Rental Service</h2> | |
|
||
<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> | ||
|
@@ -794,7 +794,7 @@ <h2>Cab Rental Service</h2> | |
</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> | ||
|
@@ -805,11 +805,11 @@ <h2>Cab Rental Service</h2> | |
</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> | ||
|
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
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