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.
44 lines
1.2 KiB
44 lines
1.2 KiB
{{ template "header.html" . }} |
|
|
|
<div class="theme-panel"> |
|
<h2 class="theme-heading">Grant Access</h2> |
|
|
|
<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"> |
|
|
|
<div> |
|
<div class="theme-form-row"> |
|
<form method="post"> |
|
<input type="hidden" name="req" value="{{ .AuthReqID }}"/> |
|
<input type="hidden" name="approval" value="approve"> |
|
<button type="submit" class="dex-btn theme-btn--success"> |
|
<span class="dex-btn-text">Grant Access</span> |
|
</button> |
|
</form> |
|
</div> |
|
<div class="theme-form-row"> |
|
<form method="post"> |
|
<input type="hidden" name="req" value="{{ .AuthReqID }}"/> |
|
<input type="hidden" name="approval" value="rejected"> |
|
<button type="submit" class="dex-btn theme-btn-provider"> |
|
<span class="dex-btn-text">Cancel</span> |
|
</button> |
|
</form> |
|
</div> |
|
</div> |
|
|
|
</div> |
|
|
|
{{ template "footer.html" . }}
|
|
|