message: email sending ready

This commit is contained in:
2025-02-19 16:41:09 +05:45
parent 9f2c0fec1d
commit e827dc6ccb
13 changed files with 407 additions and 131 deletions

View File

@ -1,14 +1,12 @@
<?php include('header.php') ?>
<!--<< Breadcrumb Section Start >>-->
<div class="breadcrumb-wrapper bg-cover" style="background-image: url('img/bg-header-banner.jpg');">
<div class="container">
<div class="page-heading">
<ul class="breadcrumb-items wow fadeInUp" data-wow-delay=".3s">
<!-- <li>
<div class="container">
<div class="page-heading">
<ul class="breadcrumb-items wow fadeInUp" data-wow-delay=".3s">
<!-- <li>
<a href="index.html">
Home
</a>
@ -19,12 +17,12 @@
<li>
Car
</li> -->
</ul>
<h1 class="wow fadeInUp" data-wow-delay=".5s">Peugeot</h1>
</div>
</div>
</ul>
<h1 class="wow fadeInUp" data-wow-delay=".5s">Peugeot</h1>
</div>
</div>
</div>
<!-- Car Details Section Start -->
<section class="car-details fix section-padding">
<div class="container">
@ -33,71 +31,79 @@
<div class="col-lg-8">
<!-- Car Booking Form Section -->
<div class="car-booking-items">
<div class="booking-header">
<h3>Request for Booking</h3>
<p>Fill your requirement to us. We will check your request and contact you soon.</p>
</div>
<form action="" id="contact-form" method="POST" class="contact-form-items">
<input type="hidden" name="car_name" value="Peugeot 308">
<div class="row">
<!-- Name Field -->
<div class="col-lg-6">
<div class="form-clt">
<label class="label-text">Your Name</label>
<input type="text" name="name" id="name" placeholder="Your Name" class="input-field" required>
</div>
</div>
<!-- Email Field -->
<div class="col-lg-6">
<div class="form-clt">
<label class="label-text">Email</label>
<input type="text" name="email" id="email" placeholder="example@gmail.com" class="input-field" >
</div>
</div>
<div class="booking-header">
<h3>Request for Booking</h3>
<p>Fill your requirement to us. We will check your request and contact you soon.</p>
</div>
<form action="mailBooking.php" id="contact-form" method="POST" class="contact-form-items">
<input type="hidden" name="car_name" value="Peugeot 308">
<div class="row">
<!-- Name Field -->
<div class="col-lg-6">
<div class="form-clt">
<label class="label-text">Your Name</label>
<input type="text" name="name" id="name" placeholder="Your Name"
class="input-field" required>
</div>
</div>
<!-- Phone Number Field -->
<div class="col-lg-6">
<div class="form-clt">
<label class="label-text">Phone Number</label>
<input type="text" name="phone" id="phone" placeholder="+977 00 0000 - 000" class="input-field" required>
</div>
</div>
<!-- Email Field -->
<div class="col-lg-6">
<div class="form-clt">
<label class="label-text">Email</label>
<input type="text" name="email" id="email" placeholder="example@gmail.com"
class="input-field">
</div>
</div>
<div class="col-lg-6">
<div class="form-clt">
<label class="label-text">Drop-off Location</label>
<input type="text" name="location" id="location" placeholder="koteshor" class="input-field" required>
</div>
</div>
<!-- Phone Number Field -->
<div class="col-lg-6">
<div class="form-clt">
<label class="label-text">Phone Number</label>
<input type="text" name="phone" id="phone" placeholder="+977 00 0000 - 000"
class="input-field" required>
</div>
</div>
<div class="col-lg-12">
<div class="form-clt">
<label class="label-text">Pick-up Date</label>
<div id="datepicker" class="input-group date" data-date-format="dd-mm-yyyy">
<input name='pickup_date' class="form-control" type="text" placeholder="Check in" readonly>
<span class="input-group-addon"> <i class="fa-solid fa-calendar-days"></i></span>
</div>
</div>
<div class="col-lg-6">
<div class="form-clt">
<label class="label-text">Drop-off Location</label>
<input type="text" name="location" id="location" placeholder="koteshor"
class="input-field" required>
</div>
</div>
<div class="col-lg-12">
<div class="form-clt">
<label class="label-text">Pick-up Date</label>
<div id="datepicker" class="input-group date" data-date-format="dd-mm-yyyy">
<input name='pickup_date' class="form-control" type="text"
placeholder="Check in" readonly>
<span class="input-group-addon"> <i
class="fa-solid fa-calendar-days"></i></span>
</div>
<div class="col-lg-12">
<div class="form-clt">
<label class="label-text">Drop-off Date</label>
<div id="datepicker2" class="input-group date" data-date-format="dd-mm-yyyy">
<input class="form-control" type="text" name = 'dropoff_date' placeholder="Check in" readonly>
<span class="input-group-addon"> <i class="fa-solid fa-calendar-days"></i></span>
</div>
</div>
</div>
</div>
<div class="col-lg-12">
<div class="form-clt">
<label class="label-text">Drop-off Date</label>
<div id="datepicker2" class="input-group date" data-date-format="dd-mm-yyyy">
<input class="form-control" type="text" name='dropoff_date'
placeholder="Check in" readonly>
<span class="input-group-addon"> <i
class="fa-solid fa-calendar-days"></i></span>
</div>
</div>
</div>
<!-- Submit Button -->
<div class="col-lg-12">
<button class="theme-btn animated-btn" type="submit">
Send Request
</button>
</div>
</div>
</form>
<!-- Submit Button -->
<div class="col-lg-12">
<button class="theme-btn animated-btn" type="submit">
Send Request
</button>
</div>
</div>
</form>
</div>
@ -120,9 +126,10 @@
<h3>Peugeot 308</h3>
<h6>$70.00 <span>/ Day</span></h6>
<p class="mt-4 mb-4">
To deliver on the promise of technology and human We help our clients become sions of themselves.
To deliver on the promise of technology and human We help our clients become sions of
themselves.
</p>
</div>
</div>
</div>
@ -191,4 +198,4 @@
</div>
</div>
</section>
<?php include('footer.php') ?>
<?php include('footer.php') ?>