diff options
author | zotlabs <mike@macgirvin.com> | 2018-03-31 14:00:09 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-03-31 14:00:09 -0700 |
commit | 3bd3686acf2a2878a6275ff9eb303e6ed136d4c9 (patch) | |
tree | e23efa0f530f729aaa5364cf32cd8f6cc67b5210 /view/tpl | |
parent | 4493304fa79aded582b65498aacf6db48a788bdc (diff) | |
parent | 6decffb00c00fabcb4ef581084eaca038e340686 (diff) | |
download | volse-hubzilla-3bd3686acf2a2878a6275ff9eb303e6ed136d4c9.tar.gz volse-hubzilla-3bd3686acf2a2878a6275ff9eb303e6ed136d4c9.tar.bz2 volse-hubzilla-3bd3686acf2a2878a6275ff9eb303e6ed136d4c9.zip |
Merge branch 'oauth2' of https://github.com/anaqreon/hubzilla into oauth2
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/oauth2testvehicle.tpl | 21 | ||||
-rwxr-xr-x | view/tpl/oauth_authorize.tpl | 18 |
2 files changed, 33 insertions, 6 deletions
diff --git a/view/tpl/oauth2testvehicle.tpl b/view/tpl/oauth2testvehicle.tpl new file mode 100644 index 000000000..ce46b58c0 --- /dev/null +++ b/view/tpl/oauth2testvehicle.tpl @@ -0,0 +1,21 @@ +<h1>OAuth 2.0 Test Vehicle</h1> + +{{foreach $endpoints as $ept}} +<div class="oath2test-form-box"> +<form action="{{$baseurl}}/{{$ept.0}}/" method="{{$ept.4}}"> + <h3>{{$ept.3}}</h3> + {{$baseurl}}/{{$ept.0}}/?{{foreach $ept.1 as $field}}{{$field.0}}={{$field.1}}&<input type="hidden" name="{{$field.0}}" value="{{$field.1}}" />{{/foreach}} + <br> + <button type="submit" name="{{$ept.2}}_submit" value="submit" class="btn btn-med" title="">Submit</button> + <span style="display: {{if $ept.5}}inline{{else}}none{{/if}}; font-size: 2em;"> <i class="fa fa-check"></i></span> +</form> + </div> +{{/foreach}} +<div> + <h3>API response</h3> + <pre style="display: inline-block; overflow-x: auto; white-space: nowrap; width: 100%;"> + <code> + {{$api_response}} + </code> + </pre> +</div>
\ No newline at end of file diff --git a/view/tpl/oauth_authorize.tpl b/view/tpl/oauth_authorize.tpl index 2b7afa80e..72701ce52 100755 --- a/view/tpl/oauth_authorize.tpl +++ b/view/tpl/oauth_authorize.tpl @@ -2,9 +2,15 @@ <div class='oauthapp'> <img src='{{$app.icon}}'> - <h4>{{$app.name}}</h4> -</div> -<h3>{{$authorize}}</h3> -<form method="POST"> -<div class="settings-submit-wrapper"><input class="settings-submit" type="submit" name="oauth_yes" value="{{$yes}}" /></div> -</form> + <h3>{{$app.name}}</h3> + <p class="descriptive-paragraph">{{$authorize}}</p> + <form method="POST"> + <div class="settings-submit-wrapper"> + <input type="hidden" name="client_id" value="{{$client_id}}" /> + <input type="hidden" name="redirect_uri" value="{{$redirect_uri}}" /> + <input type="hidden" name="state" value="{{$state}}" /> + <button class="btn btn-lg btn-danger" name="authorize" value="deny" type="submit">{{$no}}</button> + <button class="btn btn-lg btn-success" name="authorize" value="allow" type="submit">{{$yes}}</button> + </div> + </form> +</div>
\ No newline at end of file |