Files
fridge-tracker/app/templates/index.html
2026-04-09 14:06:19 +01:00

18 lines
512 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Fridge Tracker</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<h1>Fridge Tracker</h1>
<p>Welcome. System is running.</p>
<a class="button" href="/add">Add drink</a>
<a class="button" href="/drinks">Drink catalogue</a>
<a class="button" href="/transactions">Transactions</a>
</div>
</body>
</html>