hjkhghtjhjjhjhjhjhjjhjhjjhrrtrtoirh
bnmbertsurrttrtrtrtrjhjhjjhjhhjhjhjhf'tdfg
/
home
/
u506006416
/
domains
/
developermanish.com
/
public_html
/
cybbox
/
Upload FileeE
HOME
<!DOCTYPE html> <html lang="zxx"> <?php include 'include/head.php'; ?> <body> <!-- site-wrapper --> <div class="site-wrapper"> <div class="header_contact"> <!-- ======== 1.1. Header section ======== --> <?php include 'include/header.php'; ?> <!-- ======== End of 1.1. Header section ======== --> <!-- ======== 6.1. hero section ======== --> <section class="banner_contact d-flex align-items-center gap-2 flex-column"> <h2>Enquiry Now</h2> <h5>Home / Enquiry Now</h5> </section> <!-- ======== End of 6.1. hero section ======== --> </div> <!-- ======== 6.2. Get In Touch With Us section ======== --> <section class="contact_page"> <div class="container"> <div class="row"> <div class="col-lg-10 col-md-6 mt-md-0 mt-sm-5 mt-4 text-md-start text-sm-center text-center position-relative" style="margin:auto;"> <div class="boxed"> <h2 style="margin-bottom: 30px;">Enquiry Now</h2> <!-- contact form --> <form method="post" action="thanku.php"> <div id="contact-message"> </div> <div class="d-flex gap-lg-4 gap-md-3 gap-sm-4 gap-3"> <input type="text" placeholder="Your name" name="name" required> <input type="text" placeholder="Company name" name="cname" required> </div> <div class="d-flex gap-lg-4 gap-md-3 gap-sm-4 gap-3"> <input type="email" placeholder="Email address" name="email" required=""> <input type="text" placeholder="Phone number" name="mobile" required> </div> <div class="d-flex gap-lg-4 gap-md-3 gap-sm-4 gap-3"> <input type="text" placeholder="Enter country name" name="cuname" required=""> <input type="text" placeholder="Enter city name" name="cityname" required> </div> <div class="d-flex gap-lg-4 gap-md-3 gap-sm-4 gap-3"> <select> <option selected> Select Service </option> <?php include 'admin/config.php'; $category=mysqli_query($con, "SELECT * FROM service_detail ORDER BY `service_detail`.`id` DESC"); if(!empty($category)){ foreach($category as $rowwer){ ?> <option value="<?php echo $rowwer['category_id'] ?>"> <?php echo $rowwer['category_id'] ?> </option> <?php } } ?> </select> </div> <div> <textarea cols="30" rows="8" placeholder="Write here message" name="message" required></textarea> </div> <button type="submit" name="register">Submit</button> </form> <figure><img src="assets/Images/bg/about_cercle1.png" alt="img" class="contact-cercle2"></figure> </div> </div> </div> </div> </section> <!-- ======== End of 3.2. FAQ section ======== --> <!-- ======== 1.13. Footer section ======== --> <?php include 'include/footer.php'; ?> <!-- ======== End of 1.13. Footer section ======== --> </div> <!-- end site wrapper --> <!-- button back to top --> <button onclick="scrollToTop()" id="backToTopBtn" class="btn_hover2"><i class="fa-solid fa-arrow-turn-up"></i></button> <!-- j Query --> <script src="assets/js/jquery.js"></script> <!-- counter --> <script src="assets/js/waypoints.min.js"></script> <!-- Framework javascript --> <script src="assets/js/javascript-lib/bootstrap.min.js"></script> <!-- slider --> <script src="assets/js/slick.min.js"></script> <!-- style javascript --> <script src="assets/js/custom.js"></script> <script> // Contact page form validation start const form = document.getElementById('contact-form'); const formMessage = document.getElementById('contact-message'); form.addEventListener('submit', (event) => { event.preventDefault(); formMessage.innerHTML = 'Form submitted success fully!'; formMessage.style.display = 'block'; form.reset(); setTimeout(() => { formMessage.style.display = 'none'; }, 3000); }); // Contact page form validation end </script> </body> </html>