| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/v2.hellogtx.com/ |
Upload File : |
<!DOCTYPE html>
<html>
<head>
<title>Coming Soon</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://www.travel4seasons.in/public/countrycode/style.css?v=3.7" />
<style>
* {
margin: 0;
padding: 0;
}
.bg-image {
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100vh;
overflow-y: auto;
background-attachment: fixed;
}
.form-section {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 15px;
overflow-y: auto;
}
.enquiry-form {
background: #fff;
padding: 20px;
border-radius: 8px;
max-width: 400px;
}
.enquiry-form p {
font-size: 14px
}
.enquiry-form .form-caption {
color: #024d7f;
font-size: 16px;
font-weight: 600;
margin-bottom: 10px;
}
.enquiry-form .form-group {
}
.enquiry-form .form-control {
box-shadow: none;
border-color: #ced4da;
}
.enquiry-form textarea.form-control {
height: 70px;
}
.enquiry-form .submit-btn {
background-color: #024d7f;
color: #fff;
font-weight: 600;
width: 100%;
}
/*country code css*/
.country_details3 {
height: auto;
margin-right: 5px;
min-width: 35px;
}
.textfieldMain_mobile3 {
display: flex;
align-items: center;
}
.textfieldMain_mobile3 .iti-flag {
margin-top: -7px !important;
}
.textfieldMain_mobile3 .iti-arrow {
right: 0;
top: 4px;
}
.textfieldMain_mobile3 .form-control {
border: 0;
}
.allcountries3 li {
color: #000;
background: #fff;
}
.allcountries3 li .iti-flag {
margin-top: 0px !important;
}
.allcountries3 li span {
font-size: 14px;
}
@media (max-width: 767px) {
@media (orientation: landscape) {
.form-section {
align-items: flex-start
}
}
}
</style>
</head>
<body class="bg-image" style="background-image: url('img/bg-image.jpg');">
<section class="form-section">
<form class="enquiry-form" id= "user_signup">
<p style="color:red;" class="signuperror_msg"></p>
<p style="color:green;" class="signupsuccess_msg"></p>
<div class="form-caption">Exciting New Launch on the Horizon: Secure Your Spot Today!</div>
<input class="form-control" type="hidden" name="source" value="website">
<input class="form-control" type="hidden" name="password" value="1234561">
<input class="form-control" type="hidden" name="AgencySysId" value="36973">
<input class="form-control" type="hidden" name="AgentSysId" value="0">
<div class="form-group">
<input class="form-control" type="text" id="firstName" name="fname" placeholder="First Name">
</div>
<div class="form-group">
<input class="form-control" type="text" id="lastName" name="lname" placeholder="Last Name">
</div>
<div class="form-group">
<input class="form-control" type="email" name="customerEmail" placeholder="Email">
</div>
<div class="form-group">
<div class="txtfieldMain textfieldMain_mobile3" style="border-radius: 4px !important; position: relative;">
<div class="country_details3">
<div id="iti-flag_4" class="iti-flag in"></div>
<div class="iti-arrow"></div>
</div>
<div class="country_dropdown3">
<div class="search_country">
<input type="text" name="" class="txtfield form-control countries_list" placeholder=" Search countries" id="countries_list3" >
<div class="search_icon"></div>
</div>
<ul class="allcountries3"></ul>
</div>
<input style="width: 36px; padding-left: 0; padding-right: 0;" class="form-control sign-in-form-input-width country_code3" maxlength="5" id="mobile_code" name="countrycode" value="+91" type="tel" >
<input class="form-control numericonly sign-in-form-input-width1 en_customermobile" autocomplete="off" name="mobilenumber" maxlength="10" placeholder="Mobile" type="tel" value="">
</div>
</div>
<div class="text-right mb-2">
<button class="btn submit-btn">Submit</button>
</div>
<p class="mb-2">Be First in Line for Exclusive Deals and Launch Date Updates – Share Your Details Now.</p>
</form>
</section>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<script src="https://www.travel4seasons.in/public/countrycode/script.js?v=3.7"></script>
<script>
$("#user_signup").on('submit', function(e) {
e.preventDefault();
var data = $(this).serialize();
//alert(data);
var regex = /^\+(?:[0-9] ?){1,4}[0-9]$/;
if ($('#user_signup input[name="fname"]').val() == '') {
alert('Please enter your first name');
$('#user_signup input[name="fname"]').focus();
return false;
}
if ($('#user_signup input[name="lname"]').val() == '') {
alert('Please enter your last name');
$('#user_signup input[name="lname"]').focus();
return false;
}
if ($('#user_signup input[name="customerEmail"]').val() == '') {
alert('Please enter your Email Id');
$('#user_signup input[name="customerEmail"]').focus();
return false;
}
$.ajax({
url: 'https://globaltravelexchange.com/gtxwebservices/customerapi/agencycustomersignup',
type: 'POST',
data: data,
dataType: 'json',
success: function(result) {
if (result.status == 'success') {
alert("your form has been successfully submitted");
window.location.href = "index.html";
} else {
alert("Oops unable to connect with server!!");
return false;
}
},
error: function() {
$('.signup').html('Sign Up');
$('.signup').removeAttr('disabled', 'disabled');
alert('Oops unable to connect with server!!');
}
});
});
</script>
</script>
</body>
</html>