Added accounting and more example laptops

This commit is contained in:
2026-08-27 01:16:16 +03:00
parent c608a8aa63
commit 7d38d03d62
10 changed files with 282 additions and 13 deletions
+22
View File
@@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Stockroom | Sign in</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body class="login-page">
<main class="login-card">
<div class="brand-mark">S</div>
<p class="eyebrow">Stockroom</p>
<h1>Sign in</h1>
{% if error %}<p class="login-error">{{ error }}</p>{% endif %}
<form method="post">
<label>Username<input name="username" autocomplete="username" required autofocus></label>
<label>Password<input name="password" type="password" autocomplete="current-password" required></label>
<button class="primary-button" type="submit">Sign in</button>
</form>
</main>
</body>
</html>