18 lines
542 B
HTML
18 lines
542 B
HTML
<!-- templates/index.html -->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Admin Panel</title>
|
|
</head>
|
|
<body>
|
|
<h1>Discord Bot Admin Panel</h1>
|
|
<p>Bot Status: {{ "Running" if bot_running else "Stopped" }}</p>
|
|
<a href="{{ url_for('start') }}">Start Bot</a>
|
|
<a href="{{ url_for('stop') }}">Stop Bot</a>
|
|
<a href="{{ url_for('settings') }}">Settings</a>
|
|
<a href="{{ url_for('logout') }}">Logout</a>
|
|
</body>
|
|
</html>
|