Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
Last active June 12, 2019 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamigibbs/28cf7e014b7cb88190c84c58b9330980 to your computer and use it in GitHub Desktop.
Save jamigibbs/28cf7e014b7cb88190c84c58b9330980 to your computer and use it in GitHub Desktop.
<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