Usage
This document highlights the available actions of the Hosted Pages such as login, registration, forgot password, profile page, etc. You can utilize all of the available actions and customize the user interface as per your needs. Follow the customization document for more details.
Available Actions
You can get the URLs of all the available actions listed below from Admin Console under Branding > Hosted Pages, select Implement tab from the Theme Editor
Below is a list of the available actions with the LoginRadius Hosted Pages:
Login
To display the Login interface, direct your customers to this URL:
https://<LoginRadius site name>.hub.loginradius.com/auth.aspx?action=login&return_url=<Return URL>
Registration
To display the Registration interface, direct your customers to this URL:
https://<LoginRadius site name>.hub.loginradius.com/auth.aspx?action=register&return_url=<Return URL>
Forgot Password
To display the Forgot Password interface, direct your customers to this URL:
https://<LoginRadius site name>.hub.loginradius.com/auth.aspx?action=forgotpassword&return_url=<Return URL>
Profile Page
To display the User Profile interface, direct your customers to this URL:
https://<LoginRadius site name>.hub.loginradius.com/profile.aspx
Logout
To display the Logout interface, direct your customers to this URL:
https://<LoginRadius site name>hub.loginradius.com/auth.aspx?action=logout&return_url=<Return URL>
Note: Replace
<LoginRadius site name>
with Your LoginRadius Site Name and the<Return URL>
with the locations you would like to direct customers after successfully completing the action.
Favicon
You can upload your custom favicon on your website, Add/Reset the Favicon URL in the Favicon URL field as shown below in the screen:
Token Handling
LoginRadius’ default script sends an Access-Token in the query string as a token
parameter the return_url that you specified in the action URL. This can be used to retrieve profile data and handle additional user functionality.
Following are the examples utilizing multiple languages and their SDKs to identify this token and retrieve user data.
iframe Flows
The iframe implementation is an extension of the LoginRadius Hosted Pages, this allows you to display the Hosted Pages directly on your website in an iframe. The Identity Experience Framework will emit any events (success and error) directly to the callback handlers on the parent window. Please see our iframe Implementation Demo documentation for details.