This commit is contained in:
BIG2EYEZ
2023-12-17 19:19:27 +08:00
parent 9809841af2
commit 0439a94ba0
8 changed files with 822 additions and 299 deletions

30
Sean/views/allusers.ejs Normal file
View File

@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Users</title>
<!-- Add any additional styles or dependencies here -->
</head>
<body>
<h2>All Users</h2>
<table>
<thead>
<tr>
<th>Username</th>
<!-- Add additional columns as needed -->
</tr>
</thead>
<tbody>
<% for (let i = 0; i < users.length; i++) { %>
<tr>
<td><%= users[i].username %></td>
<!-- Add additional columns as needed -->
</tr>
<% } %>
</tbody>
</table>
</body>
</html>