mirror of
https://github.com/LeRoid-hub/Bookholder-WEB.git
synced 2025-12-16 06:49:35 +00:00
11 lines
327 B
JavaScript
11 lines
327 B
JavaScript
function login() {
|
|
const username = document.getElementById('username').value;
|
|
const password = document.getElementById('password').value;
|
|
|
|
if (username && password) {
|
|
alert(`Logging in with\nUsername: ${username}\nPassword: ${password}`);
|
|
} else {
|
|
alert('Please fill in both fields.');
|
|
}
|
|
}
|