-
Notifications
You must be signed in to change notification settings - Fork 141
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 #60 from KavyaBS123/master
modified contact form
- Loading branch information
Showing
3 changed files
with
99 additions
and
4 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 |
---|---|---|
|
@@ -46,7 +46,7 @@ <h1><br>Want to <span>Share</span> or <span>Rent</span> <br>a cab.</h1> | |
<img src="img/Car Website – [email protected]" alt=""> | ||
</div> | ||
</div> | ||
<div class="form-container"> | ||
<!-- <div class="form-container"> | ||
<form action="anonimous.php" method="post"> | ||
<div class="input-box"> | ||
<span>From <span> MUJ Hostel</span> To</span> | ||
|
@@ -62,7 +62,48 @@ <h1><br>Want to <span>Share</span> or <span>Rent</span> <br>a cab.</h1> | |
</div> | ||
<input type="submit" name="submit" id="submit" class="btn"> | ||
</form> | ||
</div> --> | ||
|
||
<div class="booking-form"> | ||
<div class="form-group"> | ||
<label for="fullName">Full Name</label> | ||
<input type="text" id="fullName" placeholder="Your Name"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="phone">Phone</label> | ||
<input type="tel" id="phone" placeholder="Telephone"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="email">Email</label> | ||
<input type="email" id="email" placeholder="[email protected]"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="city">City</label> | ||
<select id="city"> | ||
<option>Select City</option> | ||
<!-- Add more options here --> | ||
</select> | ||
</div> | ||
<div class="form-group"> | ||
<label for="vehicle">Vehicle</label> | ||
<select id="vehicle"> | ||
<option>Select Vehicle</option> | ||
<!-- Add more options here --> | ||
</select> | ||
</div> | ||
<div class="form-group"> | ||
<label for="pickupDate">Pickup Date</label> | ||
<input type="date" id="pickupDate"> | ||
</div> | ||
<div class="form-group"> | ||
<label for="dropoffDate">Drop-off Date</label> | ||
<input type="date" id="dropoffDate"> | ||
</div> | ||
</div> | ||
<div class="form-group"> | ||
<button id="bookNow">Book Now</button> | ||
</div> | ||
|
||
</section> | ||
<!-- Ride--> | ||
<section class="ride" id="ride"> | ||
|
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