Password Has Been Changed screen (v2) CSS
If you're looking for the Hosted Login v1 version of this screen, see Password Has Been Changed v1.
This screen appears after a user has successfully changed his or her password on the resetPassword screen.
Login page HTML
To help you put the CSS classes in context, the following snippet shows the HTML markup used to define the screen, with the CSS classes highlighted using red text. To view the latest HTML for a screen, right-click a blank spot on your Hosted Login login page, click View Page Source, then search for the screen name.
<div style="display:none;" id="resetPasswordSuccess" class="screen">
<div class="auth-screen content-wrapper">
<h1 class="screen-heading">{* textResetPasswordSuccessScreenHeading *}</h1>
<p class="screen-description">{* textResetPasswordSuccess *}</p>
</div>
<div class="footer-container">
<div class="content-wrapper">
<span class="help-link">{* textNeedHelp *}{* linkHelp *}</span>
<div class="footer-text">
{* textFooter *}
</div>
<div class="footer-extra-text">
{* textFooterExtra *}
</div>
</div>
</div>
</div>
CSS classes used on this screen
The following table lists all the CSS classes used on this screen; the table also includes the default CSS specified for each class (note that some classes, such as footer-text, are not spelled out in the base.css file).
Class | Default CSS |
---|---|
aic-control | aic-control { cursor:pointer } |
auth-screen content-wrapper class | .auth-screen.content-wrapper { max-width:500px } |
footer-container class | footer-container { padding: 25px; border-top: 1px solid #f2f2f2; text-align:center } |
footer-extra-text class | |
footer-text class | |
help-link class | |
screen | .screen { min-width:460px } |
screen-description class | |
screen-heading class | .screen-heading margin-top:0 } |
Updated about 2 years ago