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.
32 lines
809 B
32 lines
809 B
<html> |
|
<body> |
|
<form action="/login"> |
|
<p> |
|
Authenticate for:<input type="text" name="cross_client" placeholder="comma-separated list of client-ids"> |
|
</p> |
|
<p> |
|
Extra scopes:<input type="text" name="extra_scopes" placeholder="comma-separated list of scopes"> |
|
</p> |
|
{{ 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>
|
|
|