Skip to content

Instantly share code, notes, and snippets.

@coderberry
Created October 28, 2010 16:04
Show Gist options
  • Select an option

  • Save coderberry/651683 to your computer and use it in GitHub Desktop.

Select an option

Save coderberry/651683 to your computer and use it in GitHub Desktop.
form.html
<g:form action="pickup">
<div class="stylized myform" style="width:542px;">
<h2>Your pickup code will be given to you by your loan consultant</h2>
<g:if test="${flash.message}">
<div class="error">
${flash.message}
</div>
</g:if>
<div class="clearfix formField">
<label class="label_only">Pickup Code</label>
<g:textField name="pickupCode" value="${pickupCode}" autocomplete="no" class="text" />
</div>
<div class="clearfix formField">
<label class="label_only">Last 4 Digits of Phone</label>
<span class="after_checkbox" style="padding-right: 0px;">(XXX) XXX-</span>
<g:textField name="lastFourDigits" value="${lastFourDigits}" autocomplete="no" class="text" maxLength="4" />
</div>
<div class="clearfix formField">
<label class="label_only">Are You Human?</label>
<div style="float: left; margin-left: 10px;">
<!-- Begin Captcha -->
<div id="captcha"></div>
<!-- End Captcha -->
</div>
</div>
<div class="clearfix" style="margin-top: 15px;">
<label class="label_only">&nbsp;</label>
<g:submitButton name="submit" value="Show Me My Offer" class="button" />
</div>
</div>
</g:form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment