mirror of
https://github.com/blackboxprogramming/blackroad.io.git
synced 2026-03-17 04:57:13 -05:00
12 lines
338 B
JavaScript
12 lines
338 B
JavaScript
function handleLogin(event) {
|
|
event.preventDefault();
|
|
const username = document.getElementById('username').value.trim();
|
|
const password = document.getElementById('password').value.trim();
|
|
|
|
if (username && password) {
|
|
window.location.href = 'index.html';
|
|
} else {
|
|
alert('Please enter both username and password.');
|
|
}
|
|
}
|