mirror of
https://github.com/ConjureETS/Interface-Admin.git
synced 2026-03-24 04:21:06 +00:00
11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
$(function () {
|
|
$('form.user button').click(function() {
|
|
fetch('/login', {
|
|
method:'POST',
|
|
headers: {'Authorization': 'Basic ' + btoa($('#usernameInput').val() + ':' + $('#passwordInput').val())},
|
|
credentials: 'include',
|
|
}).then(() => location.href = '/');
|
|
|
|
return false;
|
|
});
|
|
}); |