diff options
author | Christoph Wurst <christoph@owncloud.com> | 2016-05-18 12:03:22 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@owncloud.com> | 2016-05-23 09:11:12 +0200 |
commit | 12431aa3997154aaea4eec11c2dd65f9e5dbe179 (patch) | |
tree | 8395c270b144401f53e5ed048f94a28002410e3d /settings/templates | |
parent | 357d342467b9200f190376a2bd224fa7b803b45a (diff) | |
download | nextcloud-server-12431aa3997154aaea4eec11c2dd65f9e5dbe179.tar.gz nextcloud-server-12431aa3997154aaea4eec11c2dd65f9e5dbe179.zip |
list user's auth tokens on the personal settings page
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/personal.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 29bf240e7e3..a7e86b50a59 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -139,6 +139,36 @@ if($_['passwordChangeSupported']) { } ?> +<div id="sessions" class="section"> + <h2><?php p($l->t('Sessions'));?></h2> + <?php p($l->t('These are the web browsers currently logged in to your ownCloud.'));?> + <table> + <thead> + <tr> + <th>Browser</th> + <th>Most recent activity</th> + </tr> + </thead> + <tbody class="token-list icon-loading"> + </tbody> + </table> +</div> + +<div id="devices" class="section"> + <h2><?php p($l->t('Devices'));?></h2> + <?php p($l->t("You've linked these devices."));?> + <table> + <thead> + <tr> + <th>Name</th> + <th>Most recent activity</th> + </tr> + </thead> + <tbody class="token-list icon-loading"> + </tbody> + </table> +</div> + <form id="language" class="section"> <h2> <label for="languageinput"><?php p($l->t('Language'));?></label> |