- Add Field Engineer Management feature, allowing creation, and assignment of engineers to service requests. - Add Service Contract/AMC Management feature, allowing creation of contracts and linking them to service requests. - Update admin panel to manage engineers and contracts. - Update service request form to include contract selection.
33 lines
1.4 KiB
PHP
33 lines
1.4 KiB
PHP
<?php include 'header.php'; ?>
|
|
|
|
<div class="hero-section text-center p-5 mb-4 rounded-3">
|
|
<h1 class="display-5 fw-bold">Reliable Water Purifier Service</h1>
|
|
<p class="fs-4">Your one-stop solution for installation, repair, and maintenance. Keep your water safe and pure.</p>
|
|
<a href="request-service.php" class="btn btn-primary btn-lg">Request a Service Today</a>
|
|
</div>
|
|
|
|
<div class="row text-center">
|
|
<div class="col-md-4">
|
|
<div class="card p-3">
|
|
<i class="bi bi-wrench-adjustable-circle-fill fs-1 text-primary"></i>
|
|
<h3 class="mt-3">Expert Repair</h3>
|
|
<p>Our certified technicians can fix any issue with your water purifier, ensuring optimal performance.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card p-3">
|
|
<i class="bi bi-shield-check fs-1 text-primary"></i>
|
|
<h3 class="mt-3">AMC Plans</h3>
|
|
<p>Enjoy peace of mind with our Annual Maintenance Contracts, including regular check-ups and filter changes.</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="card p-3">
|
|
<i class="bi bi-gem fs-1 text-primary"></i>
|
|
<h3 class="mt-3">Genuine Parts</h3>
|
|
<p>We use only genuine, high-quality spare parts and filters to guarantee the longevity of your appliance.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include 'footer.php'; ?>
|