34 lines
977 B
HTML
34 lines
977 B
HTML
<!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>
|