aboutsummaryrefslogtreecommitdiff
path: root/templates/tokens.php
blob: 531883d0e4977229034e57a074c9b009206c6b96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<link rel="stylesheet" href="<?php p(OCP\Util::linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>

<?php /** @var $l OC_L10N */ ?>
<?php $_['appNavigation']->printPage(); ?>

<div id="app-content">
  <h1>Manage access tokens</h1>
  <ul>
    <?php foreach ($_['tokens'] as $token) { ?>
      <li data-id="<?php p($token->tokenKey); ?>"><a href="#"><?php p($token->tokenKey); ?></a></li>
    <?php } ?>
  </ul>
</div>