Voegt boodschappenlijsten, productbeheer, realtime synchronisatie en browsercache-updates toe. Herstelt login- en sessiegedrag en maakt database-seeding herhaalbaar.\n\nCo-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
62 lines
554 B
Plaintext
62 lines
554 B
Plaintext
<div class="card">
|
|
|
|
<div class="card-body">
|
|
|
|
|
|
<h2>
|
|
Inloggen
|
|
</h2>
|
|
|
|
|
|
<form method="post">
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label">
|
|
Email
|
|
</label>
|
|
|
|
<input
|
|
class="form-control"
|
|
type="email"
|
|
name="email"
|
|
required>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mb-3">
|
|
|
|
<label class="form-label">
|
|
Wachtwoord
|
|
</label>
|
|
|
|
<input
|
|
class="form-control"
|
|
type="password"
|
|
name="password"
|
|
required>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button class="btn btn-primary">
|
|
|
|
Inloggen
|
|
|
|
</button>
|
|
|
|
|
|
</form>
|
|
|
|
<p class="text-secondary mt-3">
|
|
Nog geen account? <a href="/register">Registreren</a>
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
</div> |