Files
Discord-ai-chatbot/templates/user_landing_page.html
SimolZimol c917f30e4f modified: app.py
modified:   templates/global_admin_dashboard.html
	modified:   templates/user_dashboard.html
	modified:   templates/user_landing_page.html
2024-10-25 13:56:32 +02:00

35 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>Welcome, {{ g.user_info['username'] }}</h1>
<p>Select a server to view your server-specific data.</p>
<div class="row">
{% for guild in g.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>
<p class="card-text">Select this server to view your data for {{ guild['name'] }}.</p>
<a href="{{ url_for('user_server_data', guild_id=guild['id']) }}" class="btn btn-primary">View Server</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</body>
</html>