44 lines
1.6 KiB
HTML
44 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Redeem Giveaway</title>
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container mt-5">
|
|
<h1 class="text-center">Giveaway Prize</h1>
|
|
<p class="text-center">Congratulations! You have won the giveaway for <strong>{{ giveaway.name }}</strong> on
|
|
<strong>{{ giveaway.platform }}</strong>.</p>
|
|
|
|
{% if key %}
|
|
<!-- Wenn der Key aufgedeckt wurde -->
|
|
<div class="card mt-4">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Your Key</h5>
|
|
<p class="card-text">{{ key }}</p>
|
|
</div>
|
|
</div>
|
|
<a href="{{ url_for('user_giveaways') }}" class="btn btn-primary mt-4">Back to Giveaways</a>
|
|
{% else %}
|
|
<!-- Wenn der Key noch nicht aufgedeckt wurde -->
|
|
<div class="card mt-4">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Claim Your Key</h5>
|
|
<p class="card-text">Do you want to reveal your game key? Once revealed, it will be marked as claimed and cannot be undone.</p>
|
|
|
|
<form method="POST">
|
|
<button type="submit" class="btn btn-success">Reveal Key</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<a href="{{ url_for('user_giveaways') }}" class="btn btn-secondary mt-4">Back to Giveaways</a>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|