Skip to main content

Hello!

Has anyone found a way to modify a single sign in page? I know the text(content) can be modified via the localization tool but that setting is global across all clients / sign in forms in extended enterprise. I want to be able to have text on one extended enterprise client be different than the text on another. 
 

Cohesitysandbox.docebosaas.com/veritaspartners

different text than this page: 

Cohesitysandbox.docebosaas.com/veritascustomers

While the sign in dialogue box is the same for all sub domains, you could look to add your test to the background image. We did this for a group of users who needed instructions on how to sign in and it works well.


You could set the text in localization to a period and then use custom css in each extended enterprise client to populate the text area.

In EE client 1:

.login-form-subtitle:before {
    content: "some text here";
}

 

and then in EE Client 2:

.login-form-subtitle:before {
    content: "some different text here" !important;
}

 

Obviously the class you’d have to target would be different depending on the area you want to modify


Thanks both- great ideas. 


Reply