forked from mystiq/dex
ce14dc4368
* add trustedPeers to a client in client.json.sample * add optional cross client auth to example web app * login page is now templated
21 lines
436 B
HTML
21 lines
436 B
HTML
<html>
|
|
<body>
|
|
<form action="/login">
|
|
<table>
|
|
<tr>
|
|
<td> Authenticate for:
|
|
<br>
|
|
(comma-separated list of client-ids)
|
|
</td>
|
|
<td> <input type="text" name="cross_client"> </td>
|
|
|
|
</tr>
|
|
</table>
|
|
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
<form action="/register">
|
|
<input type="submit" value="Register">
|
|
</form>
|
|
</body>
|
|
</html>
|