window['open_login_popup'] = window['open_login_popup'] || function () { let html = ''; html += '
'; html += '
'; html += ' '; html += '
'; html += '
'; html += '
'; html += ' '; html += '
'; html += '
'; html += '
'; html += ' '; html += '
'; // show modal $('.popup-wrapper').remove(); $('body').append(html); setTimeout(function () { $('html').addClass('popup-open popup-center'); console.log('Welcome to the login popup!'); }, 10); }; window['open_register_popup'] = window['open_register_popup'] || function () { let html = ''; html += '
'; html += '
'; html += ' '; html += '
'; html += '
'; html += '
'; html += ' '; html += '
'; html += '
'; html += '
'; html += ' '; html += '
'; // show modal $('.popup-wrapper').remove(); $('body').append(html); setTimeout(function () { $('html').addClass('popup-open popup-center'); console.log('Welcome to the register popup!'); }, 10); };