23 lines
813 B
HTML
23 lines
813 B
HTML
<!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>
|