Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forgotten my password text (SSPR) #35

Open
Firewaters opened this issue May 25, 2018 · 5 comments
Open

Forgotten my password text (SSPR) #35

Firewaters opened this issue May 25, 2018 · 5 comments

Comments

@Firewaters
Copy link
Contributor

Firewaters commented May 25, 2018

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]);
}
@SRE93
Copy link

SRE93 commented Jun 29, 2018

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

@Firewaters
Copy link
Contributor Author

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

image

@SRE93
Copy link

SRE93 commented Jul 2, 2018

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

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

@Firewaters
Copy link
Contributor Author

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

#kmsiArea {
    padding-top: 10px;
}

@SRE93
Copy link

SRE93 commented Jul 2, 2018

Works great!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants