Last active
November 14, 2016 00:46
-
-
Save matthewarkin/41fe5e6e55b7b296514b000bdbb84c3c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<form class="new_ticket" id="new_ticket" action="/tickets" accept-charset="UTF-8" method="post"> | |
<input name="utf8" type="hidden" value="✓" /> | |
<fieldset class="form-group"> | |
<label for="ticket_name">Name</label> | |
<input placeholder="What's your name" class="form-control input-short" required="required" type="text" name="ticket[name]" id="ticket_name" /> | |
</fieldset> | |
<fieldset class="form-group"> | |
<label for="ticket_email">Email</label> | |
<input placeholder="Where can we email you?" class="form-control input-short" required="required" type="email" name="ticket[email]" id="ticket_email" /> | |
</fieldset> | |
<div class="form-actions"> | |
<script src="https://checkout.stripe.com/checkout.js" class="stripe-button" | |
data-key="pk_test_BbfCyK5c89Xg8qeeSUqvqQaX" | |
data-description="Earlybird-ticket for Booster " | |
data-name="FORENINGEN BOOSTERKONFERANSEN" | |
data-amount="625000.0" | |
data-locale="auto" | |
data-zip-code="true" | |
data-currency="nok"></script> | |
</div> | |
<button type="submit" name="commit" value="I'd rather get an invoice" class="btn btn-default" >pay</button> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment