feat: Adds employee form and table view, begins user form and table view.

This commit is contained in:
2025-01-07 14:05:40 -05:00
parent e3f150b32c
commit 08a0a8e1a3
15 changed files with 366 additions and 93 deletions

View File

@@ -0,0 +1,19 @@
<div id="home-content" class="container">
<div class="container">
<h1>Users</h1>
<p>Users are people that can login and generate puchase orders for employees.</p>
<br>
</div>
<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>
</div>