Files
therinaldos.com/wedding-pics/core/js/login/authpicker.js
T
david ef1ff240d4
Build & Deploy to DigitalOcean Space / build (push) Failing after 2m38s
migrate therinaldos.com data
2024-05-05 15:50:45 -04:00

16 lines
452 B
JavaScript

jQuery(document).ready(function() {
$('#app-token-login').click(function (e) {
e.preventDefault();
$(this).addClass('hidden');
$('#redirect-link').addClass('hidden');
$('#app-token-login-field').removeClass('hidden');
});
document.getElementById('login-form').addEventListener('submit', function (e) {
e.preventDefault();
document.location.href = e.target.attributes.action.value
})
$('#login-form input').removeAttr('disabled');
})