diff --git a/frontend/src/app/pages/password/password.component.ts b/frontend/src/app/pages/password/password.component.ts index dcaf24c..b5c649d 100644 --- a/frontend/src/app/pages/password/password.component.ts +++ b/frontend/src/app/pages/password/password.component.ts @@ -27,6 +27,7 @@ export class PasswordComponent { public async onSubmit() { this.changeSuccessfull = await this.password.changePassword(this.passwordForm.value.password); + this.passwordForm.reset(); setTimeout(() => this.changeSuccessfull = false, 3000); } }