You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With AdminThemeBoss enabled this piece of the login screen is hidden: <p class="pw-login-links"><a href="./?forgot=1"><i class="fa fa-question-circle fa-fw"></i> Forgot your password?</a> <br><a href="/"><i class="fa fa-home fa-fw"></i> Quonga.dk</a></p>
It results in this (custom colourscheme and logo here) which looks quite clean I agree:
– But isn't the "Reset Password" option quite important?
In the css file (AdminThemeBoss/uikit/dist/css/uikit.colourname.css) on line 16721: .pw body.ProcessLogin #pw-content-body p:last-child { display: none }
If you just remove the display:none property it will look like this:
With AdminThemeBoss enabled this piece of the login screen is hidden:
<p class="pw-login-links"><a href="./?forgot=1"><i class="fa fa-question-circle fa-fw"></i> Forgot your password?</a> <br><a href="/"><i class="fa fa-home fa-fw"></i> Quonga.dk</a></p>
It results in this (custom colourscheme and logo here) which looks quite clean I agree:
– But isn't the "Reset Password" option quite important?
In the css file (AdminThemeBoss/uikit/dist/css/uikit.colourname.css) on line 16721:
.pw body.ProcessLogin #pw-content-body p:last-child { display: none }
If you just remove the display:none property it will look like this:
I'd suggest this instead:
`.pw body.ProcessLogin #pw-content-body p:last-child {
display: flex;
justify-content: center;
margin-top: 40px;
margin-bottom: 0;
}
.pw body.ProcessLogin #pw-content-body p:last-child a:last-child {
display: none;
}`
Resulting in this:
The text was updated successfully, but these errors were encountered: