15 lines
463 B
JavaScript
15 lines
463 B
JavaScript
![]() |
document.addEventListener('DOMContentLoaded', function() {
|
||
|
function handleSubmit(event) {
|
||
|
event.preventDefault();
|
||
|
|
||
|
const nickname = document.getElementById('nickname').value;
|
||
|
const password = document.getElementById('password').value;
|
||
|
|
||
|
window.location.href = '/assets/HypertextPages/list-rooms.nytl.html';
|
||
|
|
||
|
}
|
||
|
|
||
|
const form = document.querySelector('form');
|
||
|
form.addEventListener('submit', handleSubmit);
|
||
|
});
|