I am going to implement angular SPA application which will use mvc webApi methods with authorize attribute, so I need to add authentication mechanizm, and here is my question 1. Better move standard accountController with views or 2. Add mvc webApi accountController and implement views and request myself using angular ?
AFIK in case of using webApi authentication I will have to get token and add this token with each request so a lot of manuall work.
How about mixing standard accountController and webApi methods ? Do I have to maintain tokens here manually as well ?