. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 94.23.64.18 / Your IP :
216.73.216.185 [
Web Server : Apache System : Linux webm005.cluster107.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : villadal ( 6036) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/villadal/www/old/booked/Web/scripts/ |
Upload File : |
function Registration()
{
var elements = {
form:$('#frmRegister')
};
Registration.prototype.init = function ()
{
$("#btnUpdate").click(function (e)
{
e.preventDefault();
$('#frmRegister').submit();
});
elements.form.bind('onValidationFailed', onValidationFailed);
ConfigureAdminForm(elements.form, defaultSubmitCallback, successHandler, null, {onBeforeSubmit:onBeforeAddSubmit});
};
var defaultSubmitCallback = function (form)
{
return form.attr('action') + "?action=" + form.attr('ajaxAction');
};
function onValidationFailed(event, data)
{
refreshCaptcha();
hideModal();
}
function successHandler(response)
{
if (response && response.url)
{
window.location = response.url;
}
else
{
onValidationFailed();
$('#registrationError').show();
}
}
function onBeforeAddSubmit(formData, jqForm, opts)
{
$('#profileUpdatedMessage').hide();
$('#registrationError').hide();
$.colorbox({inline:true, href:"#modalDiv", transition:"none", width:"75%", height:"75%", overlayClose:false});
$('#modalDiv').show();
return true;
}
function hideModal()
{
$('#modalDiv').hide();
$.colorbox.close();
var top = $("#registrationbox").scrollTop();
$('html, body').animate({scrollTop:top}, 'slow');
}
function refreshCaptcha()
{
var captchaImg = $('#captchaImg');
if (captchaImg.length > 0)
{
var src = captchaImg.attr('src') + '?' + Math.random();
captchaImg.attr('src', src);
$('#captchaValue').val('');
}
else if(typeof Recaptcha != "undefined")
{
Recaptcha.reload();
}
}
}