This commit is contained in:
pavel 2026-05-10 20:54:14 +02:00
commit 4f6d7cfe60
16 changed files with 1341 additions and 0 deletions

22
templates/purchase.html Normal file
View file

@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{.Title}}</title>
<link rel="stylesheet" href="/static/styles.css">
</head>
<body>
<main class="shell">
<section class="hero compact">
<p class="badge">Purchase</p>
<h1>Purchase completed</h1>
<p class="lead">Your skill is now saved in your account. You can copy or download it from your purchased skills page.</p>
<div class="actions">
<a class="btn primary" href="/my-skills">Open My Purchases</a>
</div>
</section>
</main>
</body>
</html>