Complete Social Registration screen (v1) CSS

šŸ“˜

Looking for the Hosted Login v2 version of this screen? Then see Complete Social Registration v2.

Appears at the end of the social registration workflow. A new social login account can't be created until a user has supplied his or her email address and has clicked Create Account.


Login page HTML

To help you put the CSS classes in context, the following snippet shows the HTML markup used to define the screen. 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="socialRegistration" class="screen">  
Ā <div class="auth-screen content-wrapper">  
Ā  Ā <h1 class="screen-heading">{* textCompleteYourRegistration *}</h1>  
Ā  Ā {* #socialRegistrationForm *}  
Ā  Ā  Ā {* emailAddress *}  
Ā  Ā  Ā <p class="registration-acceptance">{* textAcceptanceBlurb *}</p>  
Ā  Ā  Ā <div class="form-action-buttons">  
Ā  Ā  Ā  Ā <button type="submit" class="register-button">{* textCreateAccount *}</button>  
Ā  Ā  Ā </div>  
Ā  Ā {* /socialRegistrationForm *}  
Ā </div>  
Ā <div class="additional-actions-container">  
Ā  Ā  Ā <div class="content-wrapper">  
Ā  Ā  Ā  Ā <span class="help-text"><a href="#" class="aic-control cancel-link" data-action="cancel">{* textRegistrationCancel *}</a></span>  
Ā  Ā  Ā </div>  
Ā  Ā </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, aren't defined in the base.css file).

CSS ClassDefault CSS
additional-actions-container.additional-actions-container {
padding: 25px;
text-align:center
}
aic-control cancel-link].aic-control {
cursor:pointer
}

.cancel-link {
display: block;
margin-bottom:10px
}
auth-screen content-wrapper].auth-screen.content-wrapper {
max-width:500px
}
content-wrappercontent-wrapper {
background-color: #fff;
box-shadow:1px 1px 5px 2px rgba(0, 0, 0, .1)
}
footer-container.footer-container {
padding: 25px;
border-top: 1px solid #f2f2f2;
text-align:center
}
footer-extra-textĀ 
footer-text]Ā 
form-action-buttons.form-action-buttons {
margin:0 -10px
}
help-linkĀ 
help-textĀ 
register-buttonĀ 
registration-acceptanceĀ 
screen.screen {
min-width:460px
}
screen-heading.screen-heading {
margin-top:0
}

CSS classes to UIĀ elements

The following graphic maps CSS classes to the more-visible UI elements used in the screen:


See also


Did this page help you?