Vibenest
    View all
  • Explore
  • Login
  • Getting started

Writing - Most active creators

Creators in this category

Filter by Popular Featured Creators More active New Creators Free Subscription
Categories
View all Animation Artist Comunnity Designer Developer Drawing and Painting Gaming Influencer Others Photography Podcasts Video and Film Writing

Oh no! At the moment there are no creators in this category

Login to continue
Login with X Login with Google
or
Forgot Password?
    Protected by reCAPTCHA Privacy - Terms
    Don't have an account?
    Two-Step Authentication
    We have sent you a code to your email
    Resend code
      >>> 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 % } -->