aboutsummaryrefslogtreecommitdiffstats
path: root/view/settings_oauth.tpl
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2011-11-07 17:38:30 +0100
committerFabio Comuni <fabrix.xm@gmail.com>2011-11-07 17:38:30 +0100
commit4407fc2c5d47ee1a7dfb8bfdfd47e73b22ec7e2a (patch)
tree7ea864a6a7acf9f8f6475add1cae20707d2a6463 /view/settings_oauth.tpl
parentb464b819a15b5b9d62be810dd44a1111d35963d8 (diff)
downloadvolse-hubzilla-4407fc2c5d47ee1a7dfb8bfdfd47e73b22ec7e2a.tar.gz
volse-hubzilla-4407fc2c5d47ee1a7dfb8bfdfd47e73b22ec7e2a.tar.bz2
volse-hubzilla-4407fc2c5d47ee1a7dfb8bfdfd47e73b22ec7e2a.zip
oauth apps/authorization management in settings page
Diffstat (limited to 'view/settings_oauth.tpl')
-rw-r--r--view/settings_oauth.tpl26
1 files changed, 24 insertions, 2 deletions
diff --git a/view/settings_oauth.tpl b/view/settings_oauth.tpl
index 87fd6d1ee..bc5866bec 100644
--- a/view/settings_oauth.tpl
+++ b/view/settings_oauth.tpl
@@ -3,8 +3,30 @@ $tabs
<h1>$title</h1>
-<form action="settings/addon" method="post" autocomplete="off">
+<form action="settings/oauth" method="post" autocomplete="off">
+
+ <div id="profile-edit-links">
+ <ul>
+ <li>
+ <a id="profile-edit-view-link" href="$baseurl/settings/oauth/add">$add</a>
+ </li>
+ </ul>
+ </div>
-$settings_addons
+ {{ for $apps as $app }}
+ <div class='oauthapp'>
+ <img src='$app.icon' class="{{ if $app.icon }} {{ else }}noicon{{ endif }}">
+ {{ if $app.name }}<h4>$app.name</h4>{{ else }}<h4>$noname</h4>{{ endif }}
+ {{ 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>
+ {{ endif }}
+ {{ endif }}
+ {{ if $app.my }}
+ <a href="$baseurl/settings/oauth/edit/$app.client_id" class="icon edit" title="$edit">&nbsp;</a>
+ <a href="$baseurl/settings/oauth/delete/$app.client_id" class="icon drop" title="$delete">&nbsp;</a>
+ {{ endif }}
+ </div>
+ {{ endfor }}
</form>