From 913383ca759c10004430c79f95985d6bc2fe1866 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 12 May 2020 14:36:22 -0400 Subject: Removing autocomplete for register and user settings password fields. - Fixes #708 --- ui/src/components/login.tsx | 2 ++ ui/src/components/user.tsx | 10 +++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ui/src/components/login.tsx b/ui/src/components/login.tsx index 581c4995..84014f68 100644 --- a/ui/src/components/login.tsx +++ b/ui/src/components/login.tsx @@ -187,6 +187,7 @@ export class Login extends Component { type="password" id="register-password" value={this.state.registerForm.password} + autoComplete="new-password" onInput={linkEvent(this, this.handleRegisterPasswordChange)} class="form-control" required @@ -206,6 +207,7 @@ export class Login extends Component { type="password" id="register-verify-password" value={this.state.registerForm.password_verify} + autoComplete="new-password" onInput={linkEvent(this, this.handleRegisterPasswordVerifyChange)} class="form-control" required diff --git a/ui/src/components/user.tsx b/ui/src/components/user.tsx index bf67a5fd..eded9998 100644 --- a/ui/src/components/user.tsx +++ b/ui/src/components/user.tsx @@ -81,7 +81,6 @@ export class User extends Component { user: { id: null, name: null, - fedi_name: null, published: null, number_of_posts: null, post_score: null, @@ -455,8 +454,9 @@ export class User extends Component { ) : ( <> @@ -609,6 +609,7 @@ export class User extends Component { id="user-password" class="form-control" value={this.state.userSettingsForm.new_password} + autoComplete="new-password" onInput={linkEvent( this, this.handleUserSettingsNewPasswordChange @@ -629,6 +630,7 @@ export class User extends Component { id="user-verify-password" class="form-control" value={this.state.userSettingsForm.new_password_verify} + autoComplete="new-password" onInput={linkEvent( this, this.handleUserSettingsNewPasswordVerifyChange @@ -649,6 +651,7 @@ export class User extends Component { id="user-old-password" class="form-control" value={this.state.userSettingsForm.old_password} + autoComplete="new-password" onInput={linkEvent( this, this.handleUserSettingsOldPasswordChange @@ -745,6 +748,7 @@ export class User extends Component {