From a2a66d525c88507ce7b07ea7d93c66923a4808ec Mon Sep 17 00:00:00 2001 From: Patrick Sun Date: Mon, 28 Dec 2020 16:02:49 +1100 Subject: [PATCH] using default password to save a few clicks --- src/app/auth/auth.component.ts | 2 +- src/app/auth/dist/auth.component.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/auth/auth.component.ts b/src/app/auth/auth.component.ts index 3c793dd..f4fc652 100644 --- a/src/app/auth/auth.component.ts +++ b/src/app/auth/auth.component.ts @@ -16,7 +16,7 @@ export class AuthComponent implements OnInit, OnDestroy{ loginSub: Subscription; public userForm: FormGroup = new FormGroup({ - password: new FormControl('abcdefg', [Validators.minLength(3), Validators.maxLength(20)]), + password: new FormControl('password', [Validators.minLength(3), Validators.maxLength(20)]), email: new FormControl('email@email.com', Validators.email) }); diff --git a/src/app/auth/dist/auth.component.js b/src/app/auth/dist/auth.component.js index 923ec0c..292be5c 100644 --- a/src/app/auth/dist/auth.component.js +++ b/src/app/auth/dist/auth.component.js @@ -15,7 +15,7 @@ var AuthComponent = /** @class */ (function () { this.rounter = rounter; this.notificationService = notificationService; this.userForm = new forms_1.FormGroup({ - password: new forms_1.FormControl('abcdefg', [forms_1.Validators.minLength(3), forms_1.Validators.maxLength(20)]), + password: new forms_1.FormControl('password', [forms_1.Validators.minLength(3), forms_1.Validators.maxLength(20)]), email: new forms_1.FormControl('email@email.com', forms_1.Validators.email) }); }