Skip to content

Instantly share code, notes, and snippets.

@greenido
Created May 3, 2015 17:36
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 greenido/6e4a4708d6e1706c8bea to your computer and use it in GitHub Desktop.
Save greenido/6e4a4708d6e1706c8bea to your computer and use it in GitHub Desktop.
Payment form example
<label for="frmNameCC">Name on card</label>
<input name="ccname" id="frmNameCC" required placeholder="Full Name" autocomplete="cc-name">
<label for="frmCCNum">Card Number</label>
<input name="cardnumber" id="frmCCNum" required autocomplete="cc-number">
<label for="frmCCCVC">CVC</label>
<input name="cvc" id="frmCCCVC" required autocomplete="cc-csc">
<label for="frmCCExp">Expiry</label>
<input name="cc-exp" id="frmCCExp" required placeholder="MM-YYYY" autocomplete="cc-exp">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment