Skip to content

Instantly share code, notes, and snippets.

@Wolfr
Created December 1, 2015 08:26
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 Wolfr/04b166b1135573461617 to your computer and use it in GitHub Desktop.
Save Wolfr/04b166b1135573461617 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Credit Card Form</title>
</head>
<body>
<form>
<fieldset>
<label for="ccName">Name on card</label>
<input id="ccName" name="ccName" type="text">
<label for="cc_number">Credit Card Number</label>
<input id="cc_number" name="cc_number" type="text" >
<label for="cardExpirationMonth">Expiration Month</label>
<input id="cardExpirationMonth" name="cardExpirationMonth" type="text">
<label for="cardExpirationYear">Expiration Year</label>
<input id="cardExpirationYear" name="cardExpirationYear" type="text">
<input type="submit" value="Charge">
</fieldset>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment