| Server IP : 64.202.187.69 / Your IP : 216.73.216.192 Web Server : Apache System : Linux 69.187.202.64.host.secureserver.net 3.10.0-1160.144.1.el7.tuxcare.els6.x86_64 #1 SMP Fri May 29 16:22:24 UTC 2026 x86_64 User : transmarket ( 1001) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/transmarket/test/TranslateMeMarket/devsite/ |
Upload File : |
<?php include 'header_without_login.php' ?>
<style>
html,
body,
header,
.view {
height: 100%;
}
@media (min-width: 851px) and (max-width: 1440px) {
html,
body,
header,
.view {
height: 850px;
}
}
@media (min-width: 800px) and (max-width: 850px) {
html,
body,
header,
.view {
height: 850px;
}
}
@media (min-width: 451px) and (max-width: 740px) {
html,
body,
header,
.view {
height: 850px;
}
}
@media (max-width: 450px) {
html,
body,
header,
.view {
height: 800px;
}
}
</style>
<body class="register-page">
<!-- Main Navigation -->
<header>
<!-- Intro Section -->
<section class="view intro-2">
<div class="mask rgba-gradient rgba-stylish-strong h-100 d-flex justify-content-center align-items-center">
<div class="container">
<!-- Grid row -->
<div class="row pt-0">
<!-- Grid column -->
<div class="col-xl-5 col-lg-6 col-md-10 col-sm-12 mx-auto mt-0">
<div class="card">
<div class="card-body">
<h2 class="font-weight-bold my-4 text-center mb-5 mt-4 font-weight-bold">
<strong>REGISTER</strong>
</h2>
<hr>
<form class="needs-validation" name="formRegister" id="formRegister" novalidate>
<div class="form-row">
<div class="col-md-12 mb-3 md-form">
<i class="fas fa-envelope prefix"></i>
<input type="email" placeholder="Email" class="form-control pt-5p" id="email" required>
<div class="invalid-feedback">
Please provide an email
</div>
</div>
<div class="col-md-12 mb-3 md-form">
<i class="fas fa-lock prefix"></i>
<input type="password" class="form-control pt-5p" id="password" aria-describedby="inputGroupPrepend2" required placeholder="Password">
<div class="invalid-feedback">
Please provide a password
</div>
</div>
<div class="col-md-12 mb-3 md-form">
<i class="fas fa-lock prefix"></i>
<input type="password" class="form-control pt-5p" id="re-password" aria-describedby="inputGroupPrepend2" required placeholder="Retype-password">
<div class="invalid-feedback">
Please provide a Retype-password
</div>
</div>
<?php /*<div class="col-md-12 mb-0 md-form">
<i class="fas fa-credit-card prefix"></i>
<input type="text" class="form-control pt-5p" id="neo-address" placeholder="NEO digital wallet" required>
<div class="invalid-feedback">
Please provide NEO digital wallet
</div>
</div>*/?>
</div>
<?php /*<p class="text-right mb-0" style="font-size: 14px;">Create a NEO wallet <a target="_blank" href="https://neotracker.io/" title="click here">here</a></p> */?>
<div class="flex-space-div mt-2">
<button class="btn btn-primary btn-rounded" id="button-signup" type="submit">Sign up</button>
<a href="login.php" >Already registered?</a>
</div>
</form>
<hr>
<div class="col-12 contact-outer flex-center-div">
<b>Contact Support</b>
<div class="whatsapp-icon">
<a target="_blank" href="https://api.whatsapp.com/message/NMBPL3K7OJJ5N1" title="click here">
<img src="images/whatsapp.png" alt="Whatsapp Icon" width="30"/>
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
</div>
</section>
<!-- Intro Section -->
</header>
<!-- Main Navigation -->
</div>
<!-- /.register-box -->
<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript">
(function() {
'use strict';
window.addEventListener('load', function() {
// Fetch all the forms we want to apply custom Bootstrap validation styles to
var forms = document.getElementsByClassName('needs-validation');
// Loop over them and prevent submission
var validation = Array.prototype.filter.call(forms, function(form) {
form.addEventListener('submit', function(event) {
if (form.checkValidity() === false) {
event.preventDefault();
event.stopPropagation();
}
form.classList.add('was-validated');
}, false);
});
}, false);
})();
</script>
<!--<script src="js/adminlte.min.js"></script>-->
<script>
$( ".needs-validation" ).submit(function( event ) {
var email = $('#email').val().trim();
var password = $('#password').val().trim();
var re_password = $('#re-password').val().trim();
if(email != '' && password != '' && re_password != '' ) {
if(password != re_password) {
toastr.error("Passwords should match.");
} else {
$("#button-signup").html('<span class="spinner-border spinner-border-sm mr-2" role="status" aria-hidden="true"></span>Loading...').attr('disabled', true);
$.ajax({url: 'controllers/register.php',
data: {
email: email,
password: password
},
type: 'post',
dataType: 'JSON',
context: this,
success: function (output) {
if (output.status == 200) {
$('.form-control').val('');
setTimeout(function () {
window.location.href = "settings.php";
}, 1500);
} else {
toastr.error(output.message);
}
$("#button-signup").html('Sign up').attr('disabled', false);
}
});
}
}
event.preventDefault();
});
</script>
</body>
</html>