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.
You can have an idea of what I'm trying to achieve with amazon website. You can login permanently and then you're always welcomed by your first name on the site, you can see your recommendations, ect... but if you want to access your account or buy something, you have to enter your login/password (and then it's valid for the session only).
Thanks !