Created
June 23, 2017 03:38
-
-
Save msrivastav13/c1a46d06eb2ce2383b23088581730dff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<aura:component | |
implements="lightning:actionOverride,force:hasRecordId,force:hasSObjectName"> | |
<article class="slds-card"> | |
<div class="slds-card__header slds-grid"> | |
<header class="slds-media slds-media--center slds-has-flexi-truncate"> | |
<div class="slds-media__body"> | |
<h2><span class="slds-text-heading--small">Answer Below Questions to Proceed to Account Creation?</span></h2> | |
</div> | |
</header> | |
<div class="slds-no-flex"> | |
<lightning:button label="Edit" onclick="{!c.handleEdit}"/> | |
</div> | |
</div> | |
<div class="slds-card__body"> | |
</div> | |
</article> | |
<br/><br/> | |
<div class="slds-float_left" style="margin-left:80px"> | |
<fieldset class="slds-form-element"> | |
<legend class="slds-form-element__legend slds-form-element__label">Select From Below</legend> | |
<div class="slds-form-element__control"> | |
<span class="slds-radio"> | |
<input type="radio" id="radio-645" name="options" checked=""/> | |
<label class="slds-radio__label" for="radio-645"> | |
<span class="slds-radio_faux"></span> | |
<span class="slds-form-element__label">Automatically Create Account Using Third Party Integration ?</span> | |
</label> | |
</span> | |
<span class="slds-radio"> | |
<input type="radio" id="radio-646" name="options"/> | |
<label class="slds-radio__label" for="radio-646"> | |
<span class="slds-radio_faux"></span> | |
<span class="slds-form-element__label">Navigate to Standard Account Screen?</span> | |
</label> | |
</span> | |
</div> | |
</fieldset> | |
</div> | |
</aura:component> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment