This site uses cookies, by continuing to use the service, you accept our use of cookies
Cookies Policy
Got it!
Explore
Shop
Login
0%
Ama Lou
Active
Singer/Songwriter
Subscribe for Free
Tip
Message
Share
Download
Facebook
Twitter
WhatsApp
Email
Text message
Copy link
1
Posts
0
Photos
0
Videos
1
Audio
0
Shop
No results have been found
Login to continue
Login with
Facebook
Login with
Google
or
Forgot Password?
Remember me
I agree with the processing of personal data
Terms and Conditions
and
Privacy Policy
Login
Cancel
Two-Step Authentication
We have sent you a code to your email
Resend code
Send
>>> onSubmitformLoginRegister = function() { sendFormLoginRegister(); } if (! captcha) { $(document).on('click','#btnLoginRegister',function(s) { s.preventDefault(); sendFormLoginRegister(); });//<<<-------- * END FUNCTION CLICK * ---->>>> } function sendFormLoginRegister() { var element = $(this); $('#btnLoginRegister').attr({'disabled' : 'true'}); $('#btnLoginRegister').find('i').addClass('spinner-border spinner-border-sm align-middle mr-1'); (function(){ $("#formLoginRegister").ajaxForm({ dataType : 'json', success: function(result) { if (result.actionRequired) { $('#modal2fa').modal({ backdrop: 'static', keyboard: false, show: true }); $('#loginFormModal').modal('hide'); return false; } // Success if (result.success) { if (result.isModal && result.isLoginRegister) { window.location.reload(); } if (result.url_return && ! result.isModal) { window.location.href = result.url_return; } if (result.check_account) { $('#checkAccount').html(result.check_account).fadeIn(500); $('#btnLoginRegister').removeAttr('disabled'); $('#btnLoginRegister').find('i').removeClass('spinner-border spinner-border-sm align-middle mr-1'); $('#errorLogin').fadeOut(100); $("#formLoginRegister").reset(); } } else { if (result.errors) { var error = ''; var $key = ''; for ($key in result.errors) { error += '
' + result.errors[$key] + '
'; } $('#showErrorsLogin').html(error); $('#errorLogin').fadeIn(500); $('#btnLoginRegister').removeAttr('disabled'); $('#btnLoginRegister').find('i').removeClass('spinner-border spinner-border-sm align-middle mr-1'); if (captcha) { grecaptcha.reset(); } } } }, statusCode: { 419: function() { window.location.reload(); } }, error: function(responseText, statusText, xhr, $form) { // error $('#btnLoginRegister').removeAttr('disabled'); $('#btnLoginRegister').find('i').removeClass('spinner-border spinner-border-sm align-middle mr-1'); swal({ type: 'error', title: error_oops, text: error_occurred+' ('+xhr+')', }); if (captcha) { grecaptcha.reset(); } } }).submit(); })(); //<--- FUNCTION % } -->