new file: Dockerfile new file: README.md new file: app.py new file: asknotesintro.txt new file: background_data.txt new file: bot.py new file: introduction.txt new file: requirements.txt new file: run.py new file: start.bat new file: templates/index.html new file: templates/login.html new file: templates/settings.html
18 lines
552 B
HTML
18 lines
552 B
HTML
<!-- web_panel/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>
|