File manager - Edit - /home/asiatechinc/public_html/asiatech-websites/hotelbipasha.com/contact.php
Back
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Contact | Hotel Bipasha</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- GOOGLE FONT --> <link href="https://fonts.googleapis.com/css?family=Playfair+Display:400,700,900" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700,800,900" rel="stylesheet"> <!-- CSS LIBRARY --> <link rel="stylesheet" type="text/css" href="css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="css/ionicons.min.css"> <link rel="stylesheet" type="text/css" href="css/owl.carousel.min.css"> <link rel="stylesheet" type="text/css" href="css/gallery.css"> <link rel="stylesheet" type="text/css" href="css/vit-gallery.css"> <link rel="shortcut icon" type="text/css" href="img/logo4.png" /> <link rel="stylesheet" type="text/css" href="css/bootstrap-select.min.css"> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.7.1/css/bootstrap-datepicker.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css" media="screen"> <script src='https://www.google.com/recaptcha/api.js'></script> <!-- MAIN STYLE --> <link rel="stylesheet" href="css/styles.css"> <style> button.btn.btn-room.captBg { margin: 0 35px 0; } </style> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-R8FP5W2VJD"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-R8FP5W2VJD'); </script> <style> #CaptchaDiv { font: normal 25px Impact, Charcoal, arial, sans-serif; font-style: italic; color: #000000; background-color: #FFFFFF; user-select: none; padding: 4px; border-radius: 4px; } #CaptchaInput { border: #38B000 2px solid; margin: 3px 0px 1px 0px; width: 98%; } #CaptchaInput { border: #38B000 2px solid; margin: 3px 0px 1px 0px; width: 100px; } </style> </head> <body> <!-- Begin: HEADER --> <?php include 'include/header.php'?> <!-- END-HEADER --> <section class="banner-tems text-center"> <div class="container"> <div class="banner-content"> <h2>Contact us</h2> <!--<p>Lorem Ipsum is simply dummy text of the printing</p>--> </div> </div> </section> <!-- CONTACT --> <section class="section-contact"> <div class="container"> <div class="contact"> <div class="row"> <div class="col-md-6 col-lg-6"> <div class="text"> <h2>Contact</h2> <ul> <li><i class="fa fa-map-marker"></i>Garacharma Near Bus Stop, PortBlair, South Andaman, Andaman & Nicobar Islands, 744105</li> <li><i class="fa fa-phone" aria-hidden="true"></i> <a href="tel:03192-204842">Landline Number : 03192-204842 </a></li> <li><i class="fa fa-phone" aria-hidden="true"></i> <a href="tel:+917063977758">+91 7063977758 </a></li> <li><i class="fa fa-envelope-o" aria-hidden="true"></i><a href="mailto:hotelbipasha@gmail.com">hotelbipasha@gmail.com </a></li> </ul> </div> </div> <div class="col-md-6 col-lg-6"> <div class="contact-form"> <form action="mail.php" method="post"> <div class="row"> <div class="col-sm-12"> <input type="text" class="field-text" name="name" id="txtName" placeholder="Full Name" pattern="^(?!\s*$).+" title="Name cannot be empty or contain only spaces" required> </div> <div class="col-sm-6"> <input type="email" id = "txtEmail" class="field-text" name="email" placeholder="Email" pattern="^(?!\s*$).+" title="Email cannot be empty or contain only spaces" required> </div> <div class="col-sm-6"> <input type="text" class="field-text numeric" id="text1" name="phone" placeholder="Phone" maxlength="10" pattern="^(?!\s*$).+" title="Phone Number cannot be empty or contain only spaces" required> </div> <div class="col-sm-12"> <textarea cols="30" rows="10" name="message" class="field-textarea" placeholder="Your Message Here.." pattern="^(?!\s*$).+" title="Mesasge cannot be empty or contain only spaces" required></textarea> </div> <div class="g-recaptcha" data-sitekey="6LcPtDwqAAAAAKY9XtydUQ6r4xdwK28DhlQj39_n"></div> <script src="https://www.google.com/recaptcha/api.js" async defer></script> <div class="col-sm-6"> <br><br><br> <button type="submit" name="formsubmit" class="btn btn-room captBg">SEND</button> </div> </div> </form> <?php if (isset($_GET['error']) && $_GET['error'] === 'captcha') { echo '<script>alert("CAPTCHA verification failed. Please try again.");</script>'; } ?> <script type="text/javascript"> // Captcha Script function checkform(theform){ var why = ""; if(theform.CaptchaInput.value == ""){ why += "- Please Enter CAPTCHA Code.\n"; } if(theform.CaptchaInput.value != ""){ if(ValidCaptcha(theform.CaptchaInput.value) == false){ why += "- The CAPTCHA Code Does Not Match.\n"; } } if(why != ""){ alert(why); return false; } } var a = Math.ceil(Math.random() * 9)+ ''; var b = Math.ceil(Math.random() * 9)+ ''; var c = Math.ceil(Math.random() * 9)+ ''; var d = Math.ceil(Math.random() * 9)+ ''; var e = Math.ceil(Math.random() * 9)+ ''; var code = a + b + c + d + e; document.getElementById("txtCaptcha").value = code; document.getElementById("CaptchaDiv").innerHTML = code; // Validate input against the generated number function ValidCaptcha(){ var str1 = removeSpaces(document.getElementById('txtCaptcha').value); var str2 = removeSpaces(document.getElementById('CaptchaInput').value); if (str1 == str2){ return true; }else{ return false; } } // Remove the spaces from the entered and generated code function removeSpaces(string){ return string.split(' ').join(''); } </script> </div> </div> </div> </div> </div> </section> <!-- END / CONTACT --> <!-- MAP --> <div class="section-map"> <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3908.242975185384!2d92.70365441480837!3d11.606019091761894!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3088955b9a384847%3A0x5bf7b7b2fcd2ccd!2sHotel%20Bipasha!5e0!3m2!1sen!2sin!4v1617427348337!5m2!1sen!2sin" width="100%" height="470" frameborder="0" style="border:0;" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe> </div> <!-- END / MAP --> <!--FOOTER--> <!-- Begin: Footer --> <?php include 'include/footer.php'?> <!-- END-Footer --> <!-- LOAD JQUERY --> <script type="text/javascript" src="js/jquery-1.12.4.min.js"></script> <script type="text/javascript" src="js/owl.carousel.min.js"></script> <script type="text/javascript" src="js/bootstrap.min.js"></script> <script type="text/javascript" src="js/vit-gallery.js"></script> <script type="text/javascript" src="js/jquery.countTo.js"></script> <script type="text/javascript" src="js/jquery.appear.min.js"></script> <script type="text/javascript" src="js/isotope.pkgd.min.js"></script> <script type="text/javascript" src="js/bootstrap-select.js"></script> <script type="text/javascript" src="js/jquery.littlelightbox.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.7.1/js/bootstrap-datepicker.js"></script> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBDyCxHyc8z9gMA5IlipXpt0c33Ajzqix4"></script> <!-- Custom jQuery --> <script type="text/javascript" src="js/sky.js"></script> <script type="text/javascript"> $(function () { $("#txtName").keypress(function (e) { var keyCode = e.keyCode || e.which; $("#lblError").html(""); //Regex for Valid Characters i.e. Alphabets. var regex = /^[A-Za-z]+$/; //Validate TextBox value against the Regex. var isValid = regex.test(String.fromCharCode(keyCode)); if (!isValid) { $("#lblError").html("Only Alphabets allowed."); } return isValid; }); }); </script> <script type="text/javascript"> var specialKeys = new Array(); specialKeys.push(8); //Backspace $(function () { $(".numeric").bind("keypress", function (e) { var keyCode = e.which ? e.which : e.keyCode var ret = ((keyCode >= 48 && keyCode <= 57) || specialKeys.indexOf(keyCode) != -1); $(".error").css("display", ret ? "none" : "inline"); return ret; }); $(".numeric").bind("paste", function (e) { return false; }); $(".numeric").bind("drop", function (e) { return false; }); }); </script> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.03 |
proxy
|
phpinfo
|
Settings