UI: User Login, Mitarbeiterübersichts Page

This commit is contained in:
mehdiboudjoudi 2024-12-18 11:06:39 +01:00 committed by Jan Klattenhoff
parent 621599e138
commit 88d3bb8cc4
Signed by: jank
GPG key ID: B267751B8AE29EFE
13 changed files with 300 additions and 3 deletions

View file

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="mitarbeiterverwaltung-view.component.css">
</head>
<body>
<div class="container">
<div class="header">
<button class="logout-button">
<img src="user.svg" alt="User Icon">
</button>
<h1>Employees</h1>
</div>
<div class="header-actions">
<div class="search-bar">
<input type="text" placeholder="Search employee">
<button>Search</button>
</div>
<button class="add-button">Add employee</button>
</div>
<table class="employee-table">
<thead>
<tr>
<th><span class="sortable">First Name</span></th>
<th><span class="sortable">Last Name</span></th>
<th>Street</th>
<th>Postcode</th>
<th>City</th>
<th>Phone</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</body>
</html>