Open main menu menu
close

WAL

    Member

    Member

    OUR MEMBERS

    There are several ways that you could choose to contact PT. Wiguna Artha Lestari's team, one of them is by accessing your membership account. We are ready to help you, please login to your account.

    var error_fields = []; var onSubmit = function(token) { var has_error = false; var err_index = 0; error_fields = [] $('#frmLogin *[required]').each(function(i) { var input = $('#frmLogin *[required]').eq(i); if(input.val() == '') { has_error = true; input.addClass('is-invalid'); if(err_index == 0) { input[0].focus(); input[0].select(); $('html,body').animate({scrollTop: (input.offset().top - $('div.header').outerHeight() - 100) + 'px' }, 300); } err_index++; } }); if(!has_error) { var form = $('#frmLogin'); var data = form.serialize(); var action = form.attr('action'); data += '&ajax=1'; $.post(action, data, function(response) { if(response.success) { window.location = response.href; } else { $('#msg-title').html(response.title); $('#msg').html(response.msg); $('#popupModal').modal('show'); if(error_fields.length > 0) { for(i = 0; i < error_fields.length; i++) { $('#' + error_fields[i]).addClass('is-invalid'); if(i == 0) { document.getElementById(error_fields[i]).focus(); $('html,body').animate({scrollTop: ($('#' + error_fields[i]).offset().top + $('#header').outerHeight() - 50) + 'px' }, 300); } } } grecaptcha.reset(); } }, 'json'); } else { grecaptcha.reset(); } };var onloadCallback = function() { grecaptcha.render('g-recaptcha', { 'sitekey' : '6LcncKQZAAAAAEwEM3OXaKMa60Og6NbYj14G-Gf1' }); }; $(function() { $('#frmLogin').submit(function(event) { event.preventDefault(); onSubmit(); }); $('#frmLogin input').keyup(function(event) { $(this).removeClass('is-invalid'); }); });