WIP resource owner password
This commit is contained in:
parent
6eb5ea0f3d
commit
db261147c2
46
index.html
46
index.html
|
@ -282,9 +282,9 @@
|
|||
<br>
|
||||
<br>
|
||||
<div class="col-md-3">
|
||||
<strong>Authorization Dialog URL</strong>: <span ng-bind="vm.validated.provider"></span>
|
||||
<strong>Authorization Dialog URL</strong>
|
||||
<br>
|
||||
(this is the URL part of subject@issuer)
|
||||
(this is what opens the login dialog box with the checkboxes and such)
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<button class="btn btn-default" ng-click="vm.api.implicitGrant()" ng-disabled="!vm.directives || !vm.validated.provider">Open Dialog Window</button>
|
||||
|
@ -299,6 +299,48 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" ng-if="vm.validated.provider">
|
||||
<br>
|
||||
<br>
|
||||
<div class="col-md-3">
|
||||
<strong>Credential Exists URL</strong>
|
||||
<br>
|
||||
(this is the endpoint that reports if the user exists and what their proof-strategy is)
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
...
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" ng-if="vm.validated.provider">
|
||||
<br>
|
||||
<br>
|
||||
<div class="col-md-3">
|
||||
<strong>Credential OTP URL</strong>
|
||||
<br>
|
||||
(this is the URL that sends your one-time password via email)
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
...
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row" ng-if="vm.validated.provider">
|
||||
<br>
|
||||
<br>
|
||||
<div class="col-md-3">
|
||||
<strong>Resource Owner Password URL</strong>
|
||||
<br>
|
||||
(this is the URL that native apps and APIs use to login)
|
||||
<br>
|
||||
(it's also a bit of a misnomer, it should be *proof* rather than password)
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
...
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row">
|
||||
<br>
|
||||
<br>
|
||||
|
|
Loading…
Reference in New Issue