Skip to content

Instantly share code, notes, and snippets.

@tjstalcup
Created March 28, 2016 01:55
Show Gist options
  • Save tjstalcup/712b0b84e8e6332c79e2 to your computer and use it in GitHub Desktop.
Save tjstalcup/712b0b84e8e6332c79e2 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Stripe Test</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Stripe Test</h1>
<form action="process.php" method="POST">
<input type="text" class="form-control" name="name" placeholder="Name"/>
<input type="text" class="form-control" name="date" placeholder="Delivery Date"/>
<p>Which Burrito do you want?</p>
<input type="radio" name="burrito" value="beefBean"/>Beef & Bean
<input type="radio" name="burrito" value="chickenBean"/>Chicken & Bean
<input type="radio" name="burrito" value="beef"/>Beef
<input type="radio" name="burrito" value="chicken"/>Chicken
<br/>
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="pk_test_6pRNASCoBOKtIshFeQd4XMUh"
data-amount="2000"
data-name="Burrito"
data-description="beef and bean ($5.00)"
data-image="img/burrito.png"
data-locale="auto">
</script>
</form>
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment