fix: auth forms required attrs

This commit is contained in:
Nicola Zambello 2023-02-23 01:19:48 +01:00
parent 70dbe74209
commit f51131eb00
Signed by: nzambello
GPG key ID: 56E4A92C2C1E50BA
2 changed files with 3 additions and 0 deletions

View file

@ -132,6 +132,7 @@ export default function LoginPage() {
<PasswordInput <PasswordInput
mb={12} mb={12}
withAsterisk withAsterisk
required
label="Password" label="Password"
id="password" id="password"
ref={passwordRef} ref={passwordRef}

View file

@ -238,6 +238,7 @@ export default function SignUpPage() {
<PasswordInput <PasswordInput
mb={12} mb={12}
withAsterisk withAsterisk
required
label="Password" label="Password"
id="password" id="password"
ref={passwordRef} ref={passwordRef}
@ -272,6 +273,7 @@ export default function SignUpPage() {
<PasswordInput <PasswordInput
mb={12} mb={12}
withAsterisk withAsterisk
required
label="Confirm password" label="Confirm password"
id="confirm-password" id="confirm-password"
ref={passwordRef} ref={passwordRef}