46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>User List</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://stackpath.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- Bootswatch Darkly theme -->
|
|
<link href="https://stackpath.bootstrapcdn.com/bootswatch/latest/darkly/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/latest/js/bootstrap.min.js"></script>
|
|
|
|
<body>
|
|
<div>
|
|
<table class="table table-striped table-bordered table-dark">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Username</th>
|
|
<th>Auth Level</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% for (let i=0; i < users.length; i++) { %>
|
|
<tr>
|
|
<td>
|
|
<%= users[i].id %>
|
|
</td>
|
|
<td>
|
|
<%= users[i].username %>
|
|
</td>
|
|
<td>
|
|
<%= users[i].authLevel %>
|
|
</td>
|
|
</tr>
|
|
<% } %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/latest/js/bootstrap.min.js"></script>
|
|
|
|
</html> |