diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-01 21:10:04 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-01 21:10:04 -0700 |
commit | e332d1074f1b663ec66d37b0f575df2e41d5535c (patch) | |
tree | 6309a232348eb70ed4db5fbb7ed898f98c5beee8 /view/tpl/settings_oauth.tpl | |
parent | 42ed73ed4ac55ac62214301097f7d72cbcb37238 (diff) | |
download | volse-hubzilla-e332d1074f1b663ec66d37b0f575df2e41d5535c.tar.gz volse-hubzilla-e332d1074f1b663ec66d37b0f575df2e41d5535c.tar.bz2 volse-hubzilla-e332d1074f1b663ec66d37b0f575df2e41d5535c.zip |
move theme specific files to theme dir
Diffstat (limited to 'view/tpl/settings_oauth.tpl')
-rwxr-xr-x | view/tpl/settings_oauth.tpl | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/view/tpl/settings_oauth.tpl b/view/tpl/settings_oauth.tpl deleted file mode 100755 index 811cfcec5..000000000 --- a/view/tpl/settings_oauth.tpl +++ /dev/null @@ -1,36 +0,0 @@ -<div class="generic-content-wrapper"> -<div class="section-title-wrapper"> - <h2>{{$title}}</h2> -</div> - -<div class="section-content-tools-wrapper"> -<form action="settings/oauth" method="post" autocomplete="off"> -<input type='hidden' name='form_security_token' value='{{$form_security_token}}'> - - <div id="profile-edit-links"> - <ul> - <li> - <a id="profile-edit-view-link" href="{{$baseurl}}/settings/oauth/add">{{$add}}</a> - </li> - </ul> - </div> - - {{foreach $apps as $app}} - <div class='oauthapp'> - <img src='{{$app.icon}}' class="{{if $app.icon}} {{else}}noicon{{/if}}"> - {{if $app.clname}}<h4>{{$app.clname}}</h4>{{else}}<h4>{{$noname}}</h4>{{/if}} - {{if $app.my}} - {{if $app.oauth_token}} - <div class="settings-submit-wrapper" ><button class="settings-submit" type="submit" name="remove" value="{{$app.oauth_token}}">{{$remove}}</button></div> - {{/if}} - {{/if}} - {{if $app.my}} - <a href="{{$baseurl}}/settings/oauth/edit/{{$app.client_id}}" title="{{$edit}}"><i class="fa fa-pencil btn btn-outline-secondary"></i></a> - <a href="{{$baseurl}}/settings/oauth/delete/{{$app.client_id}}?t={{$form_security_token}}" title="{{$delete}}"><i class="fa fa-trash-o btn btn-outline-secondary"></i></a> - {{/if}} - </div> - {{/foreach}} - -</form> -</div> -</div> |