-
Notifications
You must be signed in to change notification settings - Fork 175
Description
✨ Feature Description
Currently, the Signup and Login pages don’t have a way to directly go back to the previous page.
I would like to add a close (✖) button at the top.
• Clicking the button will return to the previous page.
• It will be styled to look consistent with the current UI.
🎯 Why is this Needed?
The signup and login pages currently have no quick way to return to the previous page. Users must use the browser’s back button, which is less intuitive. Adding a ✖ button improves navigation and provides a familiar UI pattern that users expect on such pages.
📋 Possible Implementation
Add a ✖ button in the top corner of the signup and login pages.
• Use window.history.back() so that it returns to the previous page.
• Place it in a way that doesn’t overlap with the existing mode toggle (either adjust spacing or align opposite sides).
📸 Mockup / Example
Screen.Recording.2025-09-06.at.10.07.39.PM.mov
✅ Additional Notes
• Can be implemented with a simple <button> or <a> tag.
• Will enhance the user experience without affecting existing functionality.