32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
document.addEventListener('DOMContentLoaded', function() {
|
|
var logoutButton = document.getElementById('logout-button');
|
|
if (logoutButton) {
|
|
logoutButton.addEventListener('click', function(event) {
|
|
event.preventDefault(); // Mencegah form submit default
|
|
Swal.fire({
|
|
title: 'Logout',
|
|
text: 'Anda yakin ingin logout?',
|
|
icon: 'warning',
|
|
showCancelButton: true,
|
|
confirmButtonColor: '#3085d6',
|
|
cancelButtonColor: '#d33',
|
|
confirmButtonText: 'Yes'
|
|
}).then((result) => {
|
|
if (result.isConfirmed) {
|
|
// Submit form untuk logout
|
|
document.getElementById('logout-form').submit();
|
|
}
|
|
});
|
|
});
|
|
}
|
|
});
|
|
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
var loginForm = document.getElementById('login-form');
|
|
if (loginForm) {
|
|
loginForm.addEventListener('submit', function(event) {
|
|
event.preventDefault();
|
|
window.location.href = "/login";
|
|
});
|
|
}
|
|
}); |