File size: 444 Bytes
a04e1ac
 
 
 
5b1d21d
a04e1ac
 
 
 
 
9146dbe
 
 
a04e1ac
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
    <title>Registration Success</title>
    <link href="/static/css/mvp.css" rel="stylesheet" media="screen">
</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>