hubl/src/scripts/user-creation-form.js

11 lines
420 B
JavaScript
Raw Normal View History

2021-02-17 17:40:12 +00:00
document.addEventListener('DOMContentLoaded', () => {
const userCreationForm = document.querySelector('#user-creation-form');
if (userCreationForm) {
userCreationForm.addEventListener('save', event => {
if (event.originalTarget.id == 'user-creation-form') {
if(!(new URLSearchParams(window.location.search)).get('code'))
document.querySelector("sib-auth").login();
}
});
}
2021-02-17 17:40:12 +00:00
});