# HopFrame Authentication With the provided HopFrame services, you can secure your blazor pages so that only logged-in users or users with the right permissions can access the page. ## Usage You can secure your Blazor pages by using the `AuthorizedView` component. Everything placed inside this component will only be displayed if the authorization was successful. You can also redirect the user if the authorization fails by specifying a `RedirectIfUnauthorized` url. ```html

This paragraph is only visible if the user is logged-in and has the required permission

``` ```html ```