Files
Discord-ai-chatbot/templates/redeem_giveaway.html
SimolZimol 364be4f769 modified: app.py
modified:   templates/redeem_giveaway.html
	modified:   templates/server_giveaways.html
	modified:   templates/user_giveaways.html
2024-10-29 10:09:44 +01:00

27 lines
836 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>Game Key:</strong> {{ key }}
</div>
{% else %}
<form method="post">
<button type="submit" class="btn btn-primary">Redeem Giveaway</button>
</form>
{% endif %}
</div>
</body>
</html>