I'm developing an application for a school, where you control what students have. The application makes the student registration and registration of occurrences (suspension or warning) that the student did. And in that context, I need to login different levels of access.
For example, you need to have three types of profiles: Administrator (who can do everything, full control), Teacher (who can only register and edit new occurrences and view student data, but not change or delete them ) and Coordinators (who can not change or delete student data, can only view this data, but can add, edit, and delete occurrences created).
I have already looked at several articles on the topic, but I get more confused, as some use SimpleMembershipProvider others use Forms ... But my question is: Which implementation would be better and if there are any examples that I can follow to do this authentication type in my application? Would I have to create other views or how can I restrict access to actions? I wanted your help because I am new to ASP.NET MVC and I do not know much where to look for something that is really useful.
Even because I downloaded a book, and when you do the roles, add users who can access certain areas at hand, and this is what I want, because in school there are MANY teachers, coordinators, and it would be difficult to keep this type of code. And ah, remembering that who will add new users is the admin, as it has all the privileges.