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!
You have completed User Authentication with ASP.NET Identity!
Instruction
Adding the User Registration Page
We need to add a controller, view model, and view for our "User Registration" page. In fact, there are a number of user related actions that we need to supportβincluding sign-in and sign-out. When a user registers with our web app they're creating an "account". So let's add a controller to our project named "AccountController".
Controller
In the ASP.NET web app project, add a class n...