Initial commit: Frühstückskonten Verwaltung Web-App

This commit is contained in:
Alf
2026-07-14 08:26:25 +02:00
commit 9ad54ae241
2301 changed files with 300595 additions and 0 deletions

26
views/login.ejs Normal file
View File

@ -0,0 +1,26 @@
<%- include('layout', { title: 'Anmeldung' }) %>
<% override body %>
<div class="login-container">
<h2>Anmeldung</h2>
<form action="/login" method="POST">
<div class="form-group">
<label for="username">Benutzername:</label>
<input type="text" id="username" name="username" required autofocus>
</div>
<div class="form-group">
<label for="password">Passwort:</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit" class="btn">Anmelden</button>
</form>
<p class="login-hint">
<strong>Standard-Anmeldung:</strong><br>
Benutzername: admin<br>
Passwort: admin123
</p>
<p class="pin-check-link">
<a href="/pin-check">Kontostand mit PIN abfragen</a>
</p>
</div>
<% end %>