-
-
Save jamigibbs/28cf7e014b7cb88190c84c58b9330980 to your computer and use it in GitHub Desktop.
This file contains 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
<form> | |
<lightning:input label="Name" | |
type="text" | |
required="true" | |
aura:id="field" | |
name="Name" /> | |
<lightning:input label="Email" | |
type="text" | |
required="true" | |
aura:id="field" | |
name="Email" /> | |
<lightning:button aura:id="submit-button" label="SUBMIT" type="submit" onclick="{!c.submitForm}" /> | |
<aura:if isTrue="{!v.formMessage}"> | |
<ui:message severity="error" closable="false"> | |
{!v.formMessage} | |
</ui:message> | |
</aura:if> | |
<iframe aura:id="vfFrame" | |
class="slds-m-top--medium" | |
src="/apex/VFrecaptchaPage" | |
scrolling="no" frameborder="0" height="500px" width="350px" allowtransparency="true"> | |
</iframe> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment