iu9-ca-web-chat/assets/js/login.js

15 lines
463 B
JavaScript
Raw Normal View History

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);
});