Files
Discord-ai-chatbot/templates/settings.html
SimolZimol 38237e6fa0 new file: .gitignore
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
2024-09-02 17:19:15 +02:00

18 lines
529 B
HTML

<!-- web_panel/templates/settings.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settings</title>
</head>
<body>
<h1>Bot Settings</h1>
<form method="POST" action="{{ url_for('settings') }}">
<!-- Hier kannst du Formulare für Bot-Einstellungen einfügen -->
<button type="submit">Save Settings</button>
</form>
<a href="{{ url_for('index') }}">Back to Dashboard</a>
</body>
</html>