28 lines
918 B
HTML
28 lines
918 B
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>
|
|
{% include 'navigation.html' %}
|
|
<div class="container mt-5">
|
|
<h2>Redeem Giveaway - {{ giveaway.name }}</h2>
|
|
<p><strong>Platform:</strong> {{ giveaway.platform }}</p>
|
|
|
|
{% if key %}
|
|
<div class="alert alert-success">
|
|
<strong>Your Game Key:</strong> {{ key }}
|
|
</div>
|
|
<p class="text-muted">This is your unique key. Keep it safe!</p>
|
|
{% else %}
|
|
<form method="post">
|
|
<button type="submit" class="btn btn-primary">Redeem Giveaway</button>
|
|
</form>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html>
|