mc-status-page/templates/index.html

36 lines
657 B
HTML
Raw Normal View History

2022-12-24 04:26:17 +00:00
<!-- Flask template for displaying the results of a SQL query as a basic website -->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Minecraft Server Status</title>
</head>
<body>
<h1>Minecraft Server Status</h1>
<div align="center">
<p style="font-size: 150%;">
{{ status|safe }}
</p>
</div>
<br>
<!-- inline style to center table elements and create spacing in each column-->
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
text-align: center;
padding: 5px;
font-size: 125%;
}
</style>
<div align="center">
{{ data|safe }}
</div>
</body>
</html>