Open Issues Need Help
View All on GitHubAI Summary: The task requires modifying the DormMate PHP application to eliminate the separate dashboard page and make the 'View Units' page the default landing page after login. This involves integrating the dashboard's user information display into the 'View Units' page, effectively merging the two functionalities into a single page.
AI Summary: Remove the 'Reservations' link from the navbar in the DormMate user dashboard. This involves editing the relevant PHP file (likely `user_dashboard.php`) to remove the link's HTML code. The change aims to streamline the user experience by removing a redundant navigation option for making reservations, which are now handled through a modal within the unit details view.
AI Summary: Implement a modal popup to display unit details instead of redirecting to a separate page. This involves creating the modal HTML structure, integrating it with existing unit display logic, handling the 'View Details' button click to show the modal, and implementing the 'Reserve Now' button functionality to redirect to the reservation page with the selected unit ID.
AI Summary: Implement a streamlined user reservation flow for the DormMate application. This involves modifying the existing system to automatically pre-select a unit based on user navigation from the dashboard to the unit details page and then to the reservation page. The reservation form should pre-fill user details and display unit information, requiring only confirmation from the user.