Files
DiscordBot/web/templates/main.html
T
2025-09-16 15:00:16 +02:00

41 lines
1.7 KiB
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main Page</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="bg-light">
<div class="container mt-5 text-center">
<h1>Welcome to the Discord Bot Management Application</h1>
<p class="lead">Manage your Discord servers efficiently and effectively!</p>
<h2>Features:</h2>
<ul class="list-unstyled">
<li>✔️ Add and configure bots</li>
<li>✔️ View your wallet and transactions</li>
<li>✔️ Manage server settings</li>
<li>✔️ Monitor server statistics</li>
</ul>
<a href="{{ url_for('login') }}" class="btn btn-primary btn-lg">Login with Discord</a>
<p class="mt-3">Already have an account? Log in to access your servers and manage your bots.</p>
<h3>Getting Started</h3>
<p>Follow the steps below to begin:</p>
<ol class="list-unstyled">
<li>1. Click the button above to log in with your Discord account.</li>
<li>2. Grant the required permissions for bot management.</li>
<li>3. Start managing your servers and bots!</li>
</ol>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>