mirror of
https://github.com/ZeroCatDev/ClassworksKV.git
synced 2025-07-01 20:09:23 +00:00
10 lines
205 B
Plaintext
10 lines
205 B
Plaintext
<%- include('header.html') -%>
|
|
|
|
<h1>Users</h1>
|
|
<ul id="users">
|
|
<% users.forEach(function(user){ %>
|
|
<li><%= user.name %> <<%= user.email %>></li>
|
|
<% }) %>
|
|
</ul>
|
|
|
|
<%- include('footer.html') -%> |