Skip to content

Commit 8d2c30b

Browse files
MrSpamer Botclaude
andcommitted
feat: add Stripe payment confirmation page
Stripe checkout redirects to /confirm after successful payment. The page was missing (404). Added a simple thank-you page matching the site's visual style. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 4ad81f2 commit 8d2c30b

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

confirm/index.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<!DOCTYPE html>
2+
<html lang="cs">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
8+
<!-- Google tag (gtag.js) -->
9+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Y8CGC4CB51"></script>
10+
<script>
11+
window.dataLayer = window.dataLayer || [];
12+
function gtag(){dataLayer.push(arguments);}
13+
gtag('js', new Date());
14+
gtag('config', 'G-Y8CGC4CB51');
15+
</script>
16+
17+
<meta name="robots" content="noindex">
18+
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
19+
<link rel="stylesheet" href="../style.css?v=8cadd43b">
20+
<link rel="icon" href="../img/favicon.png">
21+
22+
<title>Děkujeme za nákup | Web Science Konference</title>
23+
</head>
24+
25+
<body style="background: #1a1a2e; color: #fff; min-height: 100vh; display: flex; align-items: center; justify-content: center;">
26+
<div class="container text-center" style="max-width: 600px; padding: 60px 20px;">
27+
<h1 style="font-size: 4rem; margin-bottom: 0.5em;">🎉</h1>
28+
<h2 style="color: #3CB371; margin-bottom: 0.5em;">Děkujeme za nákup!</h2>
29+
<p style="font-size: 1.1rem; line-height: 1.6; margin-bottom: 1.5em;">
30+
Potvrzení a vstupenku obdržíte na e-mail zadaný při platbě.
31+
Těšíme se na vás <strong>13. 5. 2026 v Brně</strong>!
32+
</p>
33+
<a href="https://www.webscience.cz" class="my-btn" style="display: inline-block; background: #3CB371; color: #fff; padding: 12px 30px; font-weight: bold; text-decoration: none;">
34+
Zpět na webscience.cz
35+
</a>
36+
</div>
37+
</body>
38+
39+
</html>

0 commit comments

Comments
 (0)