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>
13 lines
465 B
Plaintext
13 lines
465 B
Plaintext
<% if (success && success.length) { %>
|
|
<div class="alert alert-success" role="alert"><%= success[0] %></div>
|
|
<% } %>
|
|
<% if (error && error.length) { %>
|
|
<div class="alert alert-danger" role="alert"><%= error[0] %></div>
|
|
<% } %>
|
|
<% if (info && info.length) { %>
|
|
<div class="alert alert-info" role="alert"><%= info[0] %></div>
|
|
<% } %>
|
|
<% if (warning && warning.length) { %>
|
|
<div class="alert alert-warning" role="alert"><%= warning[0] %></div>
|
|
<% } %>
|