PK

ADDRLIN : /home/questend/public_html/domains/ftfinntax.com/
FLL :
Current File : /home/questend/public_html/domains/ftfinntax.com/contact.php

<?php
    if (isset($_POST["needassistancebtn"])) {
      //print_r($_POST);  exit;
      $name = !empty($_POST['name'])?trim($_POST['name']):"";
      $email = !empty($_POST['email'])?trim($_POST['email']):"";
      $phone = !empty($_POST['phone'])?trim($_POST['phone']):"";
      $message = !empty($_POST['message'])?trim($_POST['message']):"";
      $error_msg = "";

      //mail to admin for contacting users
      function sendmail($name,$from,$to,$sendmessage){
        $to      = $to;
        $subject = 'FTFINNTAX NEED ASSISTANCE Enquiry';
        $headers = 'MIME-Version: 1.0' . "\r\n";
        $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
        $headers .= 'From:' .$from. "\r\n" .
                      'Reply-To: ' . "\r\n" .
                    'X-Mailer: PHP/' . phpversion();
        $message = $sendmessage;

      mail($to, $subject, $message, $headers);
      }
      if(!empty($message)){
      $to="ftfinntaxconsultants@gmail.com";
      $contactmail='<table cellpadding="0" cellspacing="0" style="width:600px; margin:0px auto; color:#7b7b7c; vertical-align:middle; font-family:Arial, Helvetica, sans-serif; font-size:16px;">
        <tr>
          <td style="text-align:center;"><a href="#"><img src="" /></a></td>
        </tr>
        <tr>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <td style="color:#333;"><strong>Hi, Admin</strong></td>
        </tr>
        <tr>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <td>You have been received a query.</td>
        </tr>
        </table>
        <table cellpadding="0" cellspacing="0" style="width:600px; margin:0px auto; color:#7b7b7c; vertical-align:top; font-family:Arial, Helvetica, sans-serif; font-size:14px; line-height:22px;">
        <tr>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <td style="color:#333;" colspan="3"><strong>Contact Details</strong></td>
        </tr>
        <tr>
          <td>&nbsp;</td>
        </tr>
          <tr>
            <td width="200px;">Name</td>
            <td width="20px;">:</td>
            <td width="380px;">'.$name.'</td>
          </tr>
          <tr>
            <td width="200px;">Email Address</td>
            <td width="20px;">:</td>
            <td width="380px;">'.$email.'</td>
          </tr>
          <tr>
            <td width="200px;">Phone No.</td>
            <td width="20px;">:</td>
            <td width="380px;">'.$phone.'</td>
          </tr>
          <tr>
            <td width="200px;">Message</td>
            <td width="20px;">:</td>
            <td width="380px;"><p>'.$message.'</p></td>
          </tr>
        
        </table>';
        //print_r($contactmail); exit;
        sendmail($name,$email,$to,$contactmail);
        //var_dump(sendmail($name,$email,$to,$contactmail));   
      }
      // end mail send
      $error_msg = "Message Sent Successfully";
      ?>
          <script type="text/javascript">
            $error_msg = "Message Sent Successfully";
            alert("Sucessfully Submited");
          </script>
       <?php
    }

   if(!empty($_POST)){
    //print_r($_POST); exit;
    $name = !empty($_POST['name'])?trim($_POST['name']):"";
    $email = !empty($_POST['email'])?trim($_POST['email']):"";
    $message = !empty($_POST['message'])?trim($_POST['message']):"";
    $error_msg = "";


    //mail to admin for contacting users
    function sendmail($name,$from,$to,$sendmessage){
      $to      = $to;//'indusinfotek.umashankar@gmail.com';
      $subject = 'FTFINNTAX CONSULTANTS PVT LTD Enquiry';
      $headers = 'MIME-Version: 1.0' . "\r\n";
      $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
      $headers .= 'From:' .$from. "\r\n" .
                    'Reply-To: ' . "\r\n" .
                  'X-Mailer: PHP/' . phpversion();
      $message = $sendmessage;

    mail($to, $subject, $message, $headers);
    }
    if(!empty($message)){
    $to="ftfinntaxconsultants@gmail.com";
    $contactmail='<table cellpadding="0" cellspacing="0" style="width:600px; margin:0px auto; color:#7b7b7c; vertical-align:middle; font-family:Arial, Helvetica, sans-serif; font-size:16px;">
      <tr>
        <td style="text-align:center;"><a href="#"><img src="" /></a></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td style="color:#333;"><strong>Hi, Admin</strong></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>You have been received a query.</td>
      </tr>
      </table>
      <table cellpadding="0" cellspacing="0" style="width:600px; margin:0px auto; color:#7b7b7c; vertical-align:top; font-family:Arial, Helvetica, sans-serif; font-size:14px; line-height:22px;">
      <tr>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td style="color:#333;" colspan="3"><strong>Contact Details</strong></td>
      </tr>
      <tr>
        <td>&nbsp;</td>
      </tr>
        <tr>
          <td width="200px;">Name</td>
          <td width="20px;">:</td>
          <td width="380px;">'.$name.'</td>
        </tr>
        <tr>
          <td width="200px;">Email Address</td>
          <td width="20px;">:</td>
          <td width="380px;">'.$email.'</td>
        </tr>
        <tr>
          <td width="200px;">Message</td>
          <td width="20px;">:</td>
          <td width="380px;"><p>'.$message.'</p></td>
        </tr>
      
      </table>';
      //print_r($contactmail); exit;
      sendmail($name,$email,$to,$contactmail);
      //var_dump(sendmail($name,$email,$to,$contactmail));   
    }
    // end mail send
    $error_msg = "Message Sent Successfully";
    ?>
        <script type="text/javascript">
          $error_msg = "Message Sent Successfully";
          alert("Sucessfully Submited");
        </script>
     <?php 
  }
?>
<!DOCTYPE html>
<html lang="en-US">
   <head>
      <meta charset="utf-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <meta property="og:title" content="FTFINNTAX CONSULTANTS PVT LTD" />
<meta property="og:type" content="FTFINNTAX CONSULTANTS PVT LTD" />
<meta property="og:url" content="http://ftfinntax.com" />
<meta property="og:image" content="http://ftfinntax.com" />
<meta property="og:description" content="FTFINNTAX CONSULTANTS PVT LTD" />
<meta property="og:site_name" content="FTFINNTAX CONSULTANTS PVT LTD" />
      <!--  --><!--    Document Title--><!-- =============================================-->
      <title>FTFINNTAX CONSULTANTS PVT LTD | Contact Us</title>
      <?php include_once'layout/style.php'; ?>
   </head>
   <body data-spy="scroll" data-target=".inner-link" data-offset="60">
      <main>
         <div class="loading" id="preloader">
            <div class="loader h-100 d-flex align-items-center justify-content-center">
               <div class="line-scale">
                  <div></div>
                  <div></div>
                  <div></div>
                  <div></div>
                  <div></div>
               </div>
            </div>
         </div>
         <?php include_once'layout/header.php'; ?>
         <section>
            <div>
               <div class="background-holder tp-60 overlay" style="background-image:url(assets/images/background-2.jpg);background-position: center bottom;"></div>
               <!--/.background-holder-->
               <div class="container">
                  <div class="row pt-6" data-inertia='{"weight":1.5}'>
                     <div class="col-md-8 px-md-0 color-white" data-zanim-timeline="{}" data-zanim-trigger="scroll">
                        <div class="overflow-hidden">
                           <h1 class="color-white fs-4 fs-md-5 mb-0 zopacity" data-zanim='{"delay":0}'>Contact</h1>
                           <div class="nav zopacity" aria-label="breadcrumb" role="navigation" data-zanim='{"delay":0.1}'>
                              <ol class="breadcrumb fs-1 pl-0 fw-700">
                                 <li class="breadcrumb-item"><a class="color-white" href="#">Home</a></li>
                                 <li class="breadcrumb-item active" aria-current="page">Contact</li>
                              </ol>
                           </div>
                        </div>
                     </div>
                  </div>
               </div>
               <!--/.row-->
            </div>
            <!--/.container-->
         </section>
         <section class="background-11">
            <div class="container">
               <div class="row align-items-stretch justify-content-center">
                  <div class="col-lg-3 mb-4 mb-lg-0">
                     <div class="h-100 px-3 py-4 background-white radius-secondary">
                        <h5 class="mb-3">Address</h5>
                        E-119, Lower Ground Floor,<br>Kalkaji, New Delhi-110019,<br>India
                     </div>
                  </div>
                  <div class="col-lg-3 mb-4 mb-lg-0">
                     <div class="h-100 px-3 py-4 background-white radius-secondary">
                        <h5 class="mb-3">Email</h5>
                        info@ftfinntax.com,<br>support@ftfinntax.com
                     </div>
                  </div>
                  <div class="col-lg-3 mb-4 mb-lg-0">
                     <div class="h-100 px-3 py-4 background-white radius-secondary">
                        <h5 class="mb-3">Phone No.</h5>
                        +91 9315559194
                     </div>
                  </div>
                  <div class="col-lg-3">
                     <div class="h-100 px-3 py-4 background-white radius-secondary">
                        <h5>Socials</h5>
                        <a class="d-inline-block mt-2" href="#"><span class="fa fa-linkedin-square fs-2 mr-2 color-primary"></span></a><a class="d-inline-block mt-2" href="#"><span class="fa fa-twitter-square fs-2 mx-2 color-primary"></span></a><a class="d-inline-block mt-2" href="#"><span class="fa fa-facebook-square fs-2 mx-2 color-primary"></span></a><a class="d-inline-block mt-2" href="#"><span class="fa fa-google-plus-square fs-2 ml-2 color-primary"></span></a>
                     </div>
                  </div>
                  <div class="col-12 mt-4">
                     <div class="background-white p-5 radius-secondary">
                        <div style="width: 100%">
                           <iframe width="100%" height="400" src="https://maps.google.com/maps?width=100%&height=600&hl=en&q=E-119%2C%20Lower%20Ground%20Floor%2C%20Kalkaji%2C%20New%20Delhi-110019+(FTFINNTAX%20CONSULTANTS%20PVT%20LTD)&ie=UTF8&t=&z=14&iwloc=B&output=embed" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"><!-- 
                              <a href="https://www.mapsdirections.info/en/journey-planner.htm">www.mapsdirections.info</a> -->
                           </iframe>
                        </div>
                     </div>
                  </div>
                  <div class="col-12 mt-4">
                     <div class="background-white p-5 h-100 radius-secondary">
                        <h5>Write to us</h5>
                        <form method="POST" action="">
                           <div class="row">
                              <div class="col-12">                                 
                                 <input class="form-control background-white" type="text" placeholder="Your Name" name="name" required>
                              </div>
                              <div class="col-12 mt-4">
                                 <input class="form-control background-white" type="email" placeholder="Email" name="email" required>
                              </div>
                              <div class="col-12 mt-4">
                                 <textarea class="form-control background-white" rows="11" placeholder="Enter your descriptions here..." name="message" required></textarea>
                              </div>
                              <div class="col-12 mt-4">
                                 <div class="row">
                                    <div>
                                       <input type="submit" value="Send Now" class="btn btn-md-lg btn-primary">
                                    </div>
                                    <!-- <div class="col">
                                       <div class="zform-feedback"></div>
                                    </div> -->
                                 </div>
                              </div>
                           </div>
                        </form>
                     </div>
                  </div>
               </div>
               <!--/.row-->
            </div>
            <!--/.container-->
         </section>
         <?php include_once'layout/need-assistance.php'; ?>
         <?php include_once'layout/footer.php'; ?>
      </main>
      <?php include_once'layout/script.php'; ?>
   </body>
</html>


PK 99
E-SHOP || DASHBOARD
404

Page Not Found

It looks like you found a glitch in the matrix...

← Back to Home