diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-07 17:38:30 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-07 17:38:30 +0100 |
commit | 4407fc2c5d47ee1a7dfb8bfdfd47e73b22ec7e2a (patch) | |
tree | 7ea864a6a7acf9f8f6475add1cae20707d2a6463 /view | |
parent | b464b819a15b5b9d62be810dd44a1111d35963d8 (diff) | |
download | volse-hubzilla-4407fc2c5d47ee1a7dfb8bfdfd47e73b22ec7e2a.tar.gz volse-hubzilla-4407fc2c5d47ee1a7dfb8bfdfd47e73b22ec7e2a.tar.bz2 volse-hubzilla-4407fc2c5d47ee1a7dfb8bfdfd47e73b22ec7e2a.zip |
oauth apps/authorization management in settings page
Diffstat (limited to 'view')
-rw-r--r-- | view/settings_oauth.tpl | 26 | ||||
-rw-r--r-- | view/settings_oauth_edit.tpl | 17 |
2 files changed, 41 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"> </a> + <a href="$baseurl/settings/oauth/delete/$app.client_id" class="icon drop" title="$delete"> </a> + {{ endif }} + </div> + {{ endfor }} </form> diff --git a/view/settings_oauth_edit.tpl b/view/settings_oauth_edit.tpl new file mode 100644 index 000000000..98b7457aa --- /dev/null +++ b/view/settings_oauth_edit.tpl @@ -0,0 +1,17 @@ +$tabs + +<h1>$title</h1> + +<form method="POST"> +{{ inc field_input.tpl with $field=$name }}{{ endinc }} +{{ inc field_input.tpl with $field=$key }}{{ endinc }} +{{ inc field_input.tpl with $field=$secret }}{{ endinc }} +{{ inc field_input.tpl with $field=$redirect }}{{ endinc }} +{{ inc field_input.tpl with $field=$icon }}{{ endinc }} + +<div class="settings-submit-wrapper" > +<input type="submit" name="submit" class="settings-submit" value="$submit" /> +<input type="submit" name="cancel" class="settings-submit" value="$cancel" /> +</div> + +</form> |