Files
Discord-ai-chatbot/templates/user_dashboard.html
SimolZimol f682196567 modified: app.py
modified:   templates/user_dashboard.html
2024-10-25 15:52:27 +02:00

22 lines
603 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>Server ID: {{ g.guild_id }}</p>
<p>Your Points: {{ g.user_data['points'] }}</p>
<p>Level: {{ g.user_data['level'] }}</p>
</div>
</body>
</html>