Forgotten my password text (SSPR)
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 where do you add this code in the js-file?
@dernettemann118 I added it after the background tint overlay function.

@Firewaters thanks a lot. Looks better as the default (Y)
But if KMSI is enabled, it isnt really nice to look at

You could add some padding in the css to the kmsiArea maybe;
#kmsiArea {
padding-top: 10px;
}
Works great!