30 lines
963 B
Plaintext
30 lines
963 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<%- include('partials/head') %>
|
|
</head>
|
|
<body class="auth-body">
|
|
<main class="auth-card">
|
|
<div class="auth-card__mark" aria-hidden="true"></div>
|
|
<h1 class="auth-card__title">Zeitkonto</h1>
|
|
<p class="auth-card__subtitle">Anmelden, um Buchungen zu erfassen.</p>
|
|
|
|
<% if (error) { %>
|
|
<p class="notice notice--error"><%= error %></p>
|
|
<% } %>
|
|
|
|
<form action="/login" method="POST" class="form">
|
|
<label class="field">
|
|
<span class="field__label">Benutzername</span>
|
|
<input type="text" name="username" autocomplete="username" required autofocus />
|
|
</label>
|
|
<label class="field">
|
|
<span class="field__label">Passwort</span>
|
|
<input type="password" name="password" autocomplete="current-password" required />
|
|
</label>
|
|
<button type="submit" class="button button--primary button--block">Anmelden</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|