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.
48 lines
1.5 KiB
48 lines
1.5 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/edit_client.js"></script> |
|
<link rel="stylesheet" href="style.css" /> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
</head> |
|
<body> |
|
<nav></nav> |
|
<div id="content"> |
|
<h1>Client bearbeiten</h1> |
|
<fieldset class="wide"> |
|
<legend>Daten</legend> |
|
<table> |
|
<tr> |
|
<th>Name</th> |
|
<td><input type="text" id="client-name" /></td> |
|
</tr> |
|
<tr> |
|
<th>ID</th> |
|
<td><input type="text" disabled="true" id="client-id" /></td> |
|
</tr> |
|
<tr> |
|
<th>Geheimnis</th> |
|
<td><input type="text" id="client-secret" /></td> |
|
</tr> |
|
<tr> |
|
<th>Weiterleitungs-URIs</th> |
|
<td> |
|
<textarea id="redirect-urls"></textarea> |
|
</td> |
|
</tr> |
|
<tr> |
|
<th>Ziel-Seite</th> |
|
<td><input type="text" id="landing-page" /></td> |
|
</tr> |
|
<tr> |
|
<td></td> |
|
<td><button type="button" id="button" onclick="updateClient();">Aktualisieren</button></td> |
|
</tr> |
|
</table> |
|
</fieldset> |
|
</div> |
|
</body> |
|
</html> |