Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update signup form
Browse files Browse the repository at this point in the history
stepan662 committed Nov 12, 2024
1 parent 4be4a01 commit 65da296
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
@@ -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}
/>
3 changes: 2 additions & 1 deletion webapp/src/component/security/SignUp/SignUpForm.tsx
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 65da296

Please sign in to comment.