EduConnect / app /admin /templates /registration_success.html
dtyago's picture
Session expiry set 24Hr and Admin storage display in MB
9146dbe
raw
history blame
No virus
374 Bytes
<!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>