This repository has been archived on 2025-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
vwa_project/web/static/scripts/reservation.js

10 lines
379 B
JavaScript

function openReservationForm() {
const now = new Date();
const formattedDate = now.toISOString().split('T')[0]; // Format date as YYYY-MM-DD
document.getElementById('date').value = formattedDate;
document.getElementById('reservationForm').style.display = 'block';
}
function closeReservationForm() {
document.getElementById('reservationForm').style.display = 'none';
}