Files
gimmiCoffee/templates/water.html

30 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="icon" href="{{ url_for('static', filename='gimmiCoffee_Logo.png') }}" type="image/png">
</head>
<body>
<header>
<div class="site-title" onclick="window.location.href = '/unsecure'">gimmiCoffee</div>
<div class="user-actions">
<span class="username">Max Mustermann</span>
<a href="/logout" class="logout">Logout</a>
</div>
</header>
<div class="container">
<h1>Wasserstatus</h1>
<div class="status">
<p><strong>Zuletzt gefüllt:</strong> {{ last_filled.strftime('%d-%m-%Y %H:%M:%S') }}</p>
<p><strong>Aktueller Füllstand:</strong> {{ current_level }}%</p>
<p><strong>Kaffees seit letzter Füllung:</strong> {{ coffees_made }}</p>
<p><strong>Gesamtanzahl der Füllungen:</strong> {{ total_refills }}</p>
</div>
</div>
<!-- <button class="homeBut" onclick="window.location.href = '/unsecure'">Get Me Home</button> -->
</body>
</html>