Files
Discord-ai-chatbot/templates/user_dashboard.html
SimolZimol 36ff99eab0 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 10:17:06 +02:00

22 lines
594 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Dashboard</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>Your Points: {{ user_data['points'] }}</p>
<p>Level: {{ user_data['level'] }}</p>
<p>Server ID: {{ guild_id }}</p>
</div>
</body>
</html>