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