modified: templates/index.html

modified:   templates/login.html
	modified:   templates/settings.html
This commit is contained in:
SimolZimol
2024-09-02 19:56:35 +02:00
parent 4c2e269196
commit eedfd5cfa6
3 changed files with 63 additions and 23 deletions

View File

@@ -1,17 +1,26 @@
<!-- templates/settings.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>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</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>
<div class="container mt-5">
<h1 class="text-center">Bot Settings</h1>
<div class="card mt-4">
<div class="card-body">
<form method="POST" action="{{ url_for('settings') }}">
<!-- Hier kannst du Formulare für Bot-Einstellungen einfügen -->
<button type="submit" class="btn btn-primary btn-block">Save Settings</button>
</form>
<a href="{{ url_for('index') }}" class="btn btn-secondary btn-block mt-3">Back to Dashboard</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>