Files
Discord-ai-chatbot/templates/server_selection.html
SimolZimol 3300a8d426 modified: app.py
new file:   templates/server_selection.html
2024-10-23 10:39:48 +02:00

17 lines
436 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Selection</title>
</head>
<body>
<h1>Select a Server</h1>
<ul>
{% for guild in session['discord_guilds'] %}
<li><a href="{{ url_for('user_dashboard', guild_id=guild['id']) }}">{{ guild['name'] }}</a></li>
{% endfor %}
</ul>
</body>
</html>