| 12345678910111213141516171819202122232425262728 |
- doctype html
- html.no-js(lang="")
- head
- meta(charset="utf-8")
- meta(http-equiv="x-ua-compatible", content="ie=edge")
- title
- meta(name="description", content="")
- meta(name="viewport", content="width=device-width, initial-scale=1")
- link(rel="manifest", href="site.webmanifest")
- link(rel="apple-touch-icon", href="icon.png")
- // Place favicon.ico in the root directory
- link(rel="stylesheet", href="css/normalize.css")
- link(rel="stylesheet", href="css/main.css")
- link(rel="stylesheet", href="css/styles.css")
- script(type="text/javascript", src="js/jquery-3.2.1.min.js")
- script(type="text/javascript", src="js/script.js")
- body
- .container
- h1 Stripe Marketplace
- p
- a(href=authUrl) Stripe Authorization
- p
- a(class="catch", href="/stripe-transfer", data-method="POST") Stripe Transfer
- p
- a(class="catch", href="/stripe-immediate-charge", data-method="POST") Immediate 20€ Charge
- p
- form(action="/stripe-charge", method="POST")
- script.stripe-button(src="https://checkout.stripe.com/checkout.js", data-key="pk_test_XKPhAkrlFi4kLGIODkRSxP8s", data-amount="999", data-name="Demo Site", data-description="Widget", data-image="https://stripe.com/img/documentation/checkout/marketplace.png", data-locale="auto", data-zip-code="true", data-currency="eur")
|