I'd like to be able to manage 2 levels of authentication for my asp.net app users. The idea is that users could login permanently with a "remember me" option and access some user pages without very sensitive data, but they would have to re-enter their login/password each time they want to access some other pages (like their payment information). This authentication for secured pages would be for the session only. Off course, I could do that manually by handling another cookie and let Identity take care of the permanent one, but maybe there's a way to do this with Identity only.I'd like to be able to manage 2 levels of authe