Files
Discord-ai-chatbot/templates/user_landing_page.html
SimolZimol 2733d8971a modified: templates/global_admin_dashboard.html
modified:   templates/server_admin_dashboard.html
	modified:   templates/server_giveaways.html
	modified:   templates/user_dashboard.html
	modified:   templates/user_landing_page.html
2024-10-25 09:56:14 +02:00

34 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Landing Page</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">
<h1 class="text-center">Welcome, {{ g.user_info['username'] }}</h1>
<p class="text-center">Select a server to view your server-specific data.</p>
<div class="row mt-4">
{% for guild in guilds %}
<div class="col-md-4 mt-3">
<div class="card">
<img src="https://cdn.discordapp.com/icons/{{ guild['id'] }}/{{ guild['icon'] }}.png" class="card-img-top" alt="Server Icon">
<div class="card-body">
<h5 class="card-title">{{ guild['name'] }}</h5>
<a href="{{ url_for('user_server_data', guild_id=guild['id']) }}" class="btn btn-primary btn-block">View Server</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</body>
</html>