Can I custom other webpage in ADFS?

Hau Kit Wong 71 Reputation points
2020-06-11T16:42:00.1+00:00

I know that I can custom the ADFS login page and I have done my customization. Still, I want to ask can I custom other webpages, especially the page when the user login successfully (like the picture that I attach). Thanks for your help!

9844-image-adfs-verify-setup.png

Active Directory Federation Services
Active Directory Federation Services
An Active Directory technology that provides single-sign-on functionality by securely sharing digital identity and entitlement rights across security and enterprise boundaries.
1,189 questions
0 comments No comments
{count} votes

Accepted answer
  1. Pierre Audonnet - MSFT 10,166 Reputation points Microsoft Employee
    2020-06-12T00:53:00.873+00:00

    Yes. All the pages. If not using the default cmdLet you can also modify then using JavaScript. You can load your own JS code that will make that page looks like whatever you'd like.
    Those type of customizations are explained here: Advanced Customization of AD FS Sign-in Pages.

    You can use the developer tools of your browser, select the area you want to change. Spot its element ID like in there:
    9798-jo2.jpg

    Then you can follow the procedure given in the document and change stuff. For example:

    // Check whether the idp_SignInThisSiteStatusLabel element is present on this page.    
    var idp_SignInThisSiteStatusLabel = document.getElementById('idp_SignInThisSiteStatusLabel');    
    if (idp_SignInThisSiteStatusLabel)    
    {    
           // idp_SignInThisSiteStatusLabel element is present, modify its properties.    
           idp_SignInThisSiteStatusLabel.innerHTML = 'Blablablabla';    
    }    
    

    9895-jo3.jpg


0 additional answers

Sort by: Most helpful