mp/Sean/views/allusers.ejs
2023-12-17 19:19:27 +08:00

31 lines
637 B
Plaintext

<!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>