Browse Source

Merge pull request #1989 from candlerb/candlerb/1732

Improve "Grant Access" template when client requests only openid scope
pull/1991/head
Márk Sági-Kazár 5 years ago committed by GitHub
parent
commit
a8c7ed9f67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      web/templates/approval.html

4
web/templates/approval.html

@ -5,12 +5,16 @@
<hr class="dex-separator">
<div>
{{ if .Scopes }}
<div class="dex-subtle-text">{{ .Client }} would like to:</div>
<ul class="dex-list">
{{ range $scope := .Scopes }}
<li>{{ $scope }}</li>
{{ end }}
</ul>
{{ else }}
<div class="dex-subtle-text">{{ .Client }} has not requested any personal information</div>
{{ end }}
</div>
<hr class="dex-separator">

Loading…
Cancel
Save