<?php 
error_reporting(0);
include("header.php"); 
?>


        <!-- Page Content -->
        <main class="page-content">

            <!-- Google Map -->
          
            <!-- Contact Area -->
            <div class="tm-section tm-contact-area tm-padding-section bg-white">
                <div class="container">
                

                    <div class="tm-contact-forms tm-padding-section-top">
                        <div class="row justify-content-center">
                            <div class="col-lg-6 col-12">
                                <div class="tm-sectiontitle text-center">
                                    <h3>Quick Online Enquiry</h3>
                                    <p>You can contact us for any of your requirements. We’ll help you meet your needs.
                                    </p>
                                </div>
                            </div>
                        </div>

                        <div class="row justify-content-center">
                            <div class="col-lg-8">
                                <form  action="submit-enquiry.php"  method="POST" autocomplete="off">
                                    
                                    <div class="tm-form-inner">
                                        <div class="tm-form-field tm-form-fieldhalf">
                                            <label for="contact-form-name">Name</label>
                                            <input type="text"  id="contact-form-name" placeholder="Your name here"
                                                name="name" required>
                                        </div>
                                      
                                        <div class="tm-form-field tm-form-fieldhalf">
                                            <label for="contact-form-phone">Phone</label>
                                            <input type="text" id="contact-form-phone"
                                                placeholder="Your phone number here" name="phone" required>
                                        </div>
                                        <div class="tm-form-field tm-form-fieldhalf">
                                            <label for="contact-form-phone">Address</label>
                                            <input type="text" id="contact-form-phone"
                                                placeholder="Your Address here" name="address" required>
                                        </div>
										 <div class="tm-form-field tm-form-fieldhalf">
                                            <label for="contact-form-phone">City</label>
                                            <input type="text" id="contact-form-phone"
                                                placeholder="Your City here" name="city" required>
                                        </div>
										<div class="tm-form-field">
                                            <label for="contact-form-message">Short Message</label>
                                            <textarea cols="30" rows="5" id="contact-form-message"
                                                placeholder="Write your message" name="message"></textarea>
                                        </div>
                                       <input type="hidden" name="pid" value="<?php echo $_GET[id];?>">
                                        <div class="tm-form-field text-center">
                                            <button type="submit" class="tm-button tm-button-block">Send
                                                </button>
                                        </div>
                                    </div>
                                </form>
                               
                            </div>
                        </div>

                    </div>
                </div>
            </div>
            <!--// Contact Area -->

        </main>
        <!--// Page Content -->
<?php include("footer.php");?>