Use type=email for signup/login email inputs (#225) #228
Reference in New Issue
Block a user
Delete Branch "priyanshu_bharti/flotilla:225-use-input-type-email"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR updates signup and login email fields to use semantic HTML input type email, as requested in issue #225.
Why
Issue #225 highlighted that email fields were using text/default input behavior. Using type=email enables better native browser validation and improved mobile keyboard experience for email entry.
This PR updates all email input fields to
type="email".Changes Made
type="text"→type="email"in the following Svelte components:SignUpEmail.svelteLogInEmail.svelteLogInOTP.svelteBenefits
Related Issue
Closes #225
Note for Reviewers:
This is a small, safe frontend-only change. Please test signup and login flows.
Hi @hodlbod,
I have updated PR #228 with the requested change (type="email" on all email inputs).
I have also made a small improvement by adding:
placeholder= you@example.com
autocomplete=email
Could you please review it? If these improvements are acceptable, I will include them. Otherwise, I can keep only the type="email" change.
Thank you!
7047fc0e4bto19155d6f14