generated from alpas/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.peb
36 lines (30 loc) · 1.16 KB
/
welcome.peb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="csrf-token" content="{{ _csrf }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Alpas - The Rapid and Delightful Kotlin Web Framework</title>
<link rel="stylesheet" href="{{ mix('css/app.css') }}">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<script src="{{ mix('js/app.js') }}" defer></script>
<script src="https://js.stripe.com/v3/"></script>
<script src="/js/client.js" defer></script>
</head>
<body>
<form id="payment-form">
{{ csrf }}
<input id="email" placeholder="your@email.address">
<div id="card-element"><!--Stripe.js injects the Card Element--></div>
<button id="submit">
<div class="spinner hidden" id="spinner"></div>
<span id="button-text">Pay</span>
</button>
<p id="card-errors" role="alert"></p>
<p class="result-message hidden">
Payment succeeded, see the result in your
<a href="" target="_blank">Stripe dashboard.</a> Refresh the page to pay again.
</p>
</form>
</body>
</html>