This commit is contained in:
2025-11-27 16:33:42 +01:00
commit ca9ac29ea4
19 changed files with 3346 additions and 0 deletions

21
views/users.ejs Normal file
View File

@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Użytkownicy</title>
</head>
<body>
<h1>Lista użytkowników</h1>
<ul>
<% users.forEach(function(user) { %>
<li><%= user.id %>: <%= user.name %></li>
<% }) %>
</ul>
<% if (config.showEmails) { %>
<p>Adresy e-mail są widoczne</p>
<% } else { %>
<p>Adresy e-mail ukryte (strona <%= config.page %>)</p>
<% } %>
</body>
</html>