mirror of https://github.com/dexidp/dex.git
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.
36 lines
775 B
36 lines
775 B
<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> |
|
{{ if .OOB }} |
|
<input type="submit" value="Login" formtarget="_blank"> |
|
{{ else }} |
|
<input type="submit" value="Login" > |
|
{{ end }} |
|
</form> |
|
|
|
{{ if .OOB }} |
|
<form action="/callback" method="get" > |
|
Code |
|
<input type="text" name="code" value=""> |
|
<br> |
|
<input type="submit" value="Exchange Code" > |
|
</form> |
|
{{ end }} |
|
|
|
{{ if not .OOB }} |
|
<form action="/register"> |
|
<input type="submit" value="Register" /> |
|
</form> |
|
{{ end }} |
|
</body> |
|
</html>
|
|
|