Spaces:
Running
Running
File size: 374 Bytes
a04e1ac 9146dbe a04e1ac |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<!DOCTYPE html>
<html>
<head>
<title>Registration Success</title>
</head>
<body>
<h1>Registration Successful!</h1>
<div>
<h2>Disk Usage:</h2>
<p>Total: {{ "%.2f"|format(disk_usage.total) }} MB</p>
<p>Used: {{ "%.2f"|format(disk_usage.used) }} MB</p>
<p>Free: {{ "%.2f"|format(disk_usage.free) }} MB</p>
</div>
</body>
</html>
|