adfsWebCustomization icon indicating copy to clipboard operation
adfsWebCustomization copied to clipboard

Forgotten my password text (SSPR)

Open Firewaters opened this issue 6 years ago • 5 comments

I'm not sure how to suggest this, but on Azure AD the forgotten my password link is directly underneath the password field where in ADFS the text comes from the SignInPageDescriptionText which floats all over the shop.

This fixes it however it depends on how people have configured to use SignInPageDescriptionText setting.

var newParent = document.getElementById('passwordArea');
var oldParent = document.getElementById('introduction');

while (oldParent.childNodes.length > 0) {
newParent.appendChild(oldParent.childNodes[0]);
}

Firewaters avatar May 25 '18 04:05 Firewaters

@Firewaters where do you add this code in the js-file?

SRE93 avatar Jun 29 '18 16:06 SRE93

@dernettemann118 I added it after the background tint overlay function.

image

Firewaters avatar Jul 02 '18 04:07 Firewaters

@Firewaters thanks a lot. Looks better as the default (Y)

But if KMSI is enabled, it isnt really nice to look at adfs

SRE93 avatar Jul 02 '18 05:07 SRE93

You could add some padding in the css to the kmsiArea maybe;

#kmsiArea {
    padding-top: 10px;
}

Firewaters avatar Jul 02 '18 05:07 Firewaters

Works great!

SRE93 avatar Jul 02 '18 06:07 SRE93