19 lines
505 B
HTML
Executable File
19 lines
505 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
<title>Discord Bot Dashboard</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Discord Bot Dashboard</h1>
|
|
<div id="info">
|
|
<!-- User info will be displayed here -->
|
|
</div>
|
|
<script src="{{ url_for('static', filename='script.js') }}"></script>
|
|
</body>
|
|
|
|
</html> |