2022-01-05 17:55:12 -08:00
|
|
|
export function userSubmitHandler(event: Event): void {
|
|
|
|
if (document.querySelector<HTMLInputElement>('#user_current_password').value.length === 0) {
|
|
|
|
event.preventDefault();
|
2022-08-04 06:09:20 -07:00
|
|
|
document.querySelector<HTMLButtonElement>('[data-target="#modal-passwd"]').click();
|
2022-01-05 17:55:12 -08:00
|
|
|
}
|
|
|
|
}
|