Initial commit
Some checks failed
release-tag / release-image (push) Failing after 3m50s

This commit is contained in:
2025-03-03 21:59:08 +01:00
commit c2ceaeb989
18 changed files with 1251 additions and 0 deletions

BIN
static/.DS_Store vendored Normal file

Binary file not shown.

30
static/dynamic.html Normal file
View File

@ -0,0 +1,30 @@
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>DKNOG Membership payment</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
/>
</head>
<body>
<header class="container">
<img src="/static/logo.png" />
</header>
<main class="container">
<article>
<header>
<strong>{title}</strong>
</header>
<p>{message}</p>
<a href="https://members.dknog.dk"
><button class="outline">Go back to member system</button></a
>
</article>
</main>
</body>
</html>

33
static/failure.html Normal file
View File

@ -0,0 +1,33 @@
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>DKNOG Membership payment</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.colors.min.css"
/>
</head>
<body>
<header class="container">
<img src="/static/logo.png" />
</header>
<main class="container">
<article>
<header>
<strong class="pico-color-red-500">Payment failed.</strong>
</header>
<a href="https://members.dknog.dk"
><button class="outline">Go back to member system.</button></a
>
</article>
</main>
</body>
</html>

36
static/index.html Normal file
View File

@ -0,0 +1,36 @@
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>DKNOG Membership payment</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
/>
</head>
<body>
<header class="container">
<img src="/static/logo.png" />
</header>
<main class="container">
<article>
<header>
<strong>Pay DKNOG Association Membership Fee</strong>
</header>
<form method="POST" action="/checkout">
<input
type="email"
name="email"
placeholder="Email"
aria-label="Email"
autocomplete="email"
/>
<input type="submit" value="Pay" />
</form>
</article>
</main>
</body>
</html>

BIN
static/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

30
static/success.html Normal file
View File

@ -0,0 +1,30 @@
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>DKNOG Membership payment</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
/>
</head>
<body>
<header class="container">
<img src="/static/logo.png" />
</header>
<main class="container">
<article>
<header>
<strong>Payment completed.</strong>
</header>
<a href="https://members.dknog.dk"
><button class="outline">Go back to member system</button></a
>
</article>
</main>
</body>
</html>