Displaying page according to user role

You can create your own custom login form. Use that form to retrieve the user roles once he is logged in. You can then redirect the user according to its role.

Another solution is to user router pages . You can use the router to return different page according to the current user role.

“router/home” will return a different pages depending on the user role. This is a more complex solution but I believe that’s the cleanest one because it automatically dispatch the user to the correct page and only use 1 URL (router/home) instead of 3