Stephan Richter
4 months ago
2 changed files with 41 additions and 0 deletions
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Light OIDC</title> |
||||
<script src="common.js"></script> |
||||
<script src="user.js"></script> |
||||
<script src="clients.js"></script> |
||||
<link rel="stylesheet" href="style.css" /> |
||||
</head> |
||||
<body> |
||||
<nav> |
||||
<a id="clients" href="clients.html">Clients</a> |
||||
</nav> |
||||
<h1>Clients</h1> |
||||
<fieldset> |
||||
<legend>bei LightOIDC registrierte Clients:</legend> |
||||
<table> |
||||
<tr> |
||||
<th>Client</th> |
||||
<th>ID</th> |
||||
<th>Weiterleitungs-URLs</th> |
||||
<th>Aktionen</th> |
||||
</tr> |
||||
<tr id="bottom"> |
||||
<td></td> |
||||
<td></td> |
||||
<td></td> |
||||
<td> |
||||
<button onclick="window.location.href='newclient.html';">Neuen Client hinzufügen…</button> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<span class="hidden" id="message">Client "{}" wirklich löschen?</span> |
||||
</fieldset> |
||||
</body> |
||||
</html> |
@ -0,0 +1,5 @@
@@ -0,0 +1,5 @@
|
||||
<a href="index.html">Übersicht</a> |
||||
<a href="clients.html" class="MANAGE_CLIENTS">Clients</a> |
||||
<a href="users.html" class="MANAGE_USERS">Benutzer</a> |
||||
<a href="settings.html">Einstellungen</a> |
||||
<a href="logout.html">Ausloggen</a> |
Loading…
Reference in new issue