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>
45 lines
587 B
Plaintext
45 lines
587 B
Plaintext
<!doctype html>
|
|
<html lang="nl">
|
|
|
|
<head>
|
|
|
|
<%- include("../partials/head") %>
|
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<div class="page">
|
|
|
|
<%- include("../partials/navbar") %>
|
|
|
|
|
|
<div class="page-wrapper">
|
|
|
|
|
|
<div class="container-xl">
|
|
|
|
<%- include("../partials/flash") %>
|
|
<%- body %>
|
|
|
|
</div>
|
|
|
|
|
|
<%- include("../partials/footer") %>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@tabler/core@latest/dist/js/tabler.min.js"></script>
|
|
<script src="/socket.io/socket.io.js"></script>
|
|
<script src="/js/app.js"></script>
|
|
|
|
</body>
|
|
|
|
</html> |