...

/

Quiz: Implementing User Authentication

Quiz: Implementing User Authentication

Test your knowledge of what you’ve learned about user authentication.

We'll cover the following...
Technical Quiz
1.

What is the correct directive to use in the template view?

this.userForm= new FormGroup({
      name: new FormControl(),
      email: new FormControl()
});
A.

ngForm="userForm"

B.

[ngForm]="userForm"

C.

{formGroup}="userForm"

D.

[formGroup]="userForm"


1 / 8