feat: Moves employee views to their own controller, updates css, and employee table view.

This commit is contained in:
2025-01-07 17:07:37 -05:00
parent 08a0a8e1a3
commit 6eb723a7cf
11 changed files with 215 additions and 81 deletions

View File

@@ -0,0 +1,12 @@
<table id="user-table">
<tr>
<th>Username</th>
<th>Email</th>
</tr>
#for(user in users):
<tr>
<td>#(user.username)</td>
<td>#(user.email)</td>
</tr>
#endfor
</table>