-
-
Save Wolfr/04b166b1135573461617 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
<!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