modified: templates/server_admin_dashboard.html modified: templates/server_giveaways.html modified: templates/user_dashboard.html modified: templates/user_landing_page.html
40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Global Admin 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 class="text-center">Welcome, {{ g.user_info['username'] }} (Global Admin)</h1>
|
|
<p class="text-center">Manage global bot settings and controls.</p>
|
|
|
|
<div class="card mt-4">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Bot Status</h5>
|
|
<p class="card-text">Status:
|
|
<span class="badge badge-{{ 'success' if bot_running else 'danger' }}">
|
|
{{ "Running" if bot_running else "Stopped" }}
|
|
</span>
|
|
</p>
|
|
<a href="{{ url_for('start') }}" class="btn btn-primary btn-block {{ 'disabled' if bot_running else '' }}">Start Bot</a>
|
|
<a href="{{ url_for('stop') }}" class="btn btn-danger btn-block {{ 'disabled' if not bot_running else '' }}">Stop Bot</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card mt-4">
|
|
<div class="card-body">
|
|
<h5 class="card-title">View Logs</h5>
|
|
<a href="{{ url_for('view_logs') }}" class="btn btn-warning btn-block">Logs</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|