Remove unnecessary semicolons in password fields
Redundant semicolons in password input fields in 'RegisterModal.astro' and 'LoginModal.astro' files have been removed. This addresses unnecessary symbols inserted in the code, ensuring cleaner and more readable syntax. 'aria-describedby' attribute in 'RegisterModal.astro' was also adjusted for better accessibility.
This commit is contained in:
parent
1730ce1bd4
commit
5b8218c5e5
2 changed files with 0 additions and 4 deletions
src/components/ui/forms
|
@ -63,7 +63,6 @@ const config = {
|
|||
<PasswordInput
|
||||
forgot={true}
|
||||
id="password"
|
||||
;
|
||||
errorId="login-password-error"
|
||||
content="8+ characters required"
|
||||
/>
|
||||
|
|
|
@ -63,7 +63,6 @@ const config = {
|
|||
<!-- Password input field -->
|
||||
<PasswordInput
|
||||
id="create-password"
|
||||
;
|
||||
errorId="register-password-error"
|
||||
content="8+ characters required"
|
||||
/>
|
||||
|
@ -71,9 +70,7 @@ const config = {
|
|||
<PasswordInput
|
||||
label="Confirm Password"
|
||||
id="confirm-password"
|
||||
;
|
||||
errorId="confirm-password-error"
|
||||
aria="confirm-password-error"
|
||||
content="Password does not match the password"
|
||||
/>
|
||||
<!-- Checkbox with a label and a link for accepting the terms and conditions -->
|
||||
|
|
Loading…
Add table
Reference in a new issue