Skip to content

Commit

Permalink
fix: update signup form
Browse files Browse the repository at this point in the history
  • Loading branch information
stepan662 committed Nov 11, 2024
1 parent 86b0f39 commit 628e8b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions webapp/src/component/security/Login/LoginCredentialsForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,12 @@ export function LoginCredentialsForm(props: LoginViewCredentialsProps) {
name="username"
label={<T keyName="login_email_label" />}
minHeight={false}
autoComplete="username email"
/>
<TextField
name="password"
type="password"
autoComplete="password"
label={<T keyName="login_password_label" />}
minHeight={false}
/>
Expand Down
3 changes: 2 additions & 1 deletion webapp/src/component/security/SignUp/SignUpForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,12 @@ export const SignUpForm = (props: Props) => {
<TextField
name="email"
label={<T keyName="sign_up_form_email" />}
autoComplete="email"
autoComplete="username email"
/>
<PasswordFieldWithValidation
label={<PasswordLabel />}
inputProps={{ type: showPassword ? 'text' : 'password' }}
autoComplete="password"
InputProps={{
endAdornment: (
<Tooltip
Expand Down

0 comments on commit 628e8b4

Please sign in to comment.