If this is a simple application, do not use the spaceship to cross the road.
Create the following database schema:
Users : username and hashed password
Roles : RoleName, RoleID, RoleStrength (int)
RolesMembership : A Rolemembership table containing a userid and roleid to enable multiple future memberships.
When setting up roles, give them a numerical weight. i.e.: Admins = 1000, Power-users = 500, guest = 10. Thus, in your forms, you can say that if the user level is 500 or higher, set to full view, otherwise view or lack of access.
Even better, abstract it with the security class using methods like IsPowerUser or IsAdmin.
, .