You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
<html> |
|
<head> |
|
<meta charset="utf-8"> |
|
<title>Light OIDC</title> |
|
<script src="scripts/common.js"></script> |
|
<script src="scripts/user.js"></script> |
|
<script src="scripts/clients.js"></script> |
|
<link rel="stylesheet" href="style.css" /> |
|
</head> |
|
<body> |
|
<nav></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='new_client.html';">Neuen Client hinzufügen…</button> |
|
</td> |
|
</tr> |
|
</table> |
|
<span class="hidden" id="message">Client "{}" wirklich löschen?</span> |
|
</fieldset> |
|
</body> |
|
</html>
|
|
|