🎨 Palette: Add visual loading states to auth forms - #200
Conversation
Adds visual loading states ("⏳ Loading...") and disables buttons during
async operations for Login, Register, and Google Sign-in to prevent
duplicate submissions and improve user feedback. Properly manages state
restoration using try/finally blocks and refactors the Google Sign-in delay
to use Promises.
Co-authored-by: singhaditya21 <53948039+singhaditya21@users.noreply.github.com>
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with New to Jules? Learn more at jules.google/docs. For security, I will only act on instructions from the user who triggered this task. |
💡 What
Added visual loading states to the authentication buttons (Login, Register, and Google Sign-in) in the web demo. During async operations, the buttons are disabled and their text changes to "⏳ Loading...".
🎯 Why
To improve user feedback during asynchronous tasks and prevent duplicate form submissions. Previously, the buttons provided no immediate visual cue that an action was processing, which could lead to user frustration or multiple clicks.
📸 Before/After
(See attached screenshots from frontend verification)
The button text changes from "Sign In with Email" / "Sign Up" to "⏳ Loading..." and becomes disabled.
♿ Accessibility
Disabling the button explicitly sets the
disabledattribute, correctly communicating the state to assistive technologies and preventing further keyboard interactions while the operation is pending.PR created automatically by Jules for task 10148261545520516986 started by @singhaditya21