Skip to content

Commit 41153b0

Browse files
author
Your Name
committed
angular security course
1 parent 7f23826 commit 41153b0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/app/login/login.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ export class LoginComponent implements OnInit {
2121
constructor(private fb:FormBuilder, private authService: AuthService, private router: Router) {
2222

2323
this.form = this.fb.group({
24-
email: ['',Validators.required],
25-
password: ['',Validators.required]
24+
email: ['test@gmail.com',Validators.required],
25+
password: ['Password10',Validators.required]
2626
});
2727

2828
}

src/app/signup/signup.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ export class SignupComponent implements OnInit {
2525
constructor(private fb: FormBuilder, private authService: AuthService,
2626
private router:Router) {
2727
this.form = this.fb.group({
28-
email: ['',Validators.required],
29-
password: ['',Validators.required],
30-
confirm: ['',Validators.required]
28+
email: ['test@gmail.com',Validators.required],
29+
password: ['Password10',Validators.required],
30+
confirm: ['Password10',Validators.required]
3131
});
3232
}
3333

0 commit comments

Comments
 (0)