Change admin login page?

Posted by Community Admin on 04-Aug-2018 16:00

Change admin login page?

All Replies

Posted by Community Admin on 13-Mar-2012 00:00

I was hoping to find the login page for the admin (~/sitefinity) in the Administration > Backend Pages section, but all I see there ~/Sitefinity/LoginPages/LoginForm. The login page URL that shows up for anonymous users though is ~/Sitefinity/Authenticate/SWT.

I also tried looking in Adminsitration > Settings > Advanced > Security > Membership Providers > Default > Parameters, but I could not find a login page URL that I can update. Another place I looked was Design > Widget Templates hoping to find the login control template.

Also would I have to make a different login page for claims based and forms based sites, or is the same login page used for both?

Posted by Community Admin on 16-Mar-2012 00:00

Hi Basem,

 What you can do in order to have a custom login page is use the custom errors section in the web.config in order to intercept the 403 (unauthorized) errors and redirect to your custom page:

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <errorstatusCode="403"redirect="NoAccess.htm"/>
        </customErrors>
Doing it this way will be the same in both claims and forms authentication.

Greetings,
Svetoslav Petsov
the Telerik team
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

This thread is closed