I'm creating Frontend for an application with Established database (am rewriting to be explicit and so there are some things I cannot change.
I was looking at Default Register/Login that comes with MVC5 sample and found that its table have fields that are problematic to my app. Specifically, my users don't have Emails and app does not require one. But they rather have strings of username (PK in Existing User table).
So I wanted to know if I can strip those unneeded field to match my table columns my table needs only UserName, Password, MobileNumber, LastLogin, and IsUserActive.
Is there a way to achieve this? I dont real want to roll my own login as I want to use Roles and Integrated Authentication by simply adding [Authorize] into my actions.
Thanks,
Stefano