29 lines
900 B
HTML
29 lines
900 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>
|
|
<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>
|
|
|
|
<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>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|