Files
SDS-CRM/public/users.html

62 lines
2.1 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Benutzer — SDS CRM</title>
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/pages/users.css" />
</head>
<body>
<header class="header">
<h1><a href="/start.html">SDS CRM</a></h1>
<nav id="main-nav" aria-label="Hauptnavigation"></nav>
</header>
<main id="app" class="main">
<p id="page-loading" class="muted">Lade …</p>
<p id="page-error" class="error" hidden></p>
<div id="page-main" class="stack" hidden>
<p><a href="/start.html">← Start</a></p>
<h2>Benutzer</h2>
<div class="card">
<h3>Neuer Benutzer</h3>
<form id="form-new-user" class="stack">
<div class="row">
<label>Benutzername <input name="username" required autocomplete="off" /></label>
<label
>Passwort
<input name="password" type="password" required minlength="8" autocomplete="new-password"
/></label>
<label
>Rolle
<select name="role">
<option value="viewer">Viewer</option>
<option value="after_sales" selected>After-Sales</option>
<option value="admin">Administrator</option>
</select>
</label>
<button type="submit">Anlegen</button>
</div>
</form>
</div>
<div class="card table-wrap">
<table class="users-table">
<thead>
<tr>
<th>Benutzer</th>
<th>Name</th>
<th>Rolle</th>
<th>Quelle</th>
<th>Aktiv</th>
<th></th>
</tr>
</thead>
<tbody id="users-table-body"></tbody>
</table>
</div>
</div>
</main>
<script type="module" src="/js/pages/users.js"></script>
</body>
</html>