Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Server Monitor</title> | |
</head> | |
<body> | |
<h1>Server Monitor</h1> | |
<h2>Uploaded Files</h2> | |
<ul> | |
{% for file in uploaded_files %} | |
<li>{{ file }}</li> | |
{% endfor %} | |
</ul> | |
<h2>Uploaded HTML Files</h2> | |
<ul> | |
{% for file in uploaded_html_files %} | |
<li>{{ file }}</li> | |
{% endfor %} | |
</ul> | |
<h2>Disk Space</h2> | |
<p>Total: {{ disk_space.total }}</p> | |
<p>Used: {{ disk_space.used }}</p> | |
<p>Free: {{ disk_space.free }}</p> | |
</body> | |
</html> |