modified: templates/index.html modified: templates/login.html modified: templates/settings.html
18 lines
519 B
HTML
18 lines
519 B
HTML
<!-- 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>
|