views/user.ejs
Sun Apr 06 2025 17:46:09 GMT+0000 (Coordinated Universal Time)
Saved by
@exam3
<!DOCTYPE html>
<html>
<head>
<title>Users</title>
</head>
<body>
<h1>User List</h1>
<table border="1" cellpadding="5">
<tr>
<th>ID</th>
<th>Name</th>
<th>Email</th>
</tr>
<% users.forEach(user => { %>
<tr>
<td><%= user.id %></td>
<td><%= user.name %></td>
<td><%= user.email %></td>
</tr>
<% }) %>
</table>
</body>
</html>
content_copyCOPY
Comments