Files
Discord-infobot/templates/index.html
SimolZimol d200d3d1d5 modified: app.py
modified:   requirements.txt
	modified:   templates/index.html
	new file:   templates/login.html
2024-09-03 15:54:48 +02:00

37 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Info-Bot Admin Panel</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">Info-Bot Admin Panel</h1>
<h2 class="mt-4">Bot Status</h2>
<p class="lead">Other Bot Status: <strong>{{ bot_status }}</strong></p>
<h2 class="mt-4">Post a Message to Discord</h2>
<form action="/post_message" method="post">
<div class="form-group">
<label for="category">Category:</label>
<select class="form-control" id="category" name="category">
<option value="Important">Important</option>
<option value="Info">Info</option>
<option value="Update">Update</option>
</select>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea class="form-control" id="message" name="message" rows="3" required></textarea>
</div>
<button type="submit" class="btn btn-success">Post Message</button>
</form>
<a href="/logout" class="btn btn-secondary btn-block mt-4">Logout</a>
</div>
</body>
</html>