Using MVC5 with Identity 2.0, I have a created a user in a database using the register option. Now a record for this user is stored in table AspNetUsers
.
I can now create a simple Windows Forms application that will accept username and password. But I am not sure how to authenticate the same user created earlier via the MVC website?
Thanks.