Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed User Authentication with ASP.NET Identity!
Instruction
Updating the Account Controller
Now that we've created our User model class, subclassed the Identity UserManager and SignInManager classes, updated our DI container configuration, and configured our OWIN middleware pipeline, we're ready to turn our attention back to the AccountController Register POST action method.
We need to do the following:
Add a constructor in order to declare our dependencies
Call a method on the use...