summaryrefslogtreecommitdiff
path: root/templates/gui-database.php
blob: 6fc057ae80d6d479377f364f5e61ec6c895c7d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<link rel="stylesheet" href="<?php p(OCP\Util::linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>

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

<script type="text/javascript" src="<?php p(OCP\Util::linkTo('grauphel','js/grauphel.js')); ?>"></script>

<div id="app-content" class="content">
  <h1>Manage database</h1>
  <p>
    In case something went seriously wrong during synchronization, you may reset your
    database.
    It will delete all your notes and the synchronization status - as if you
    never synced to this server before.
  </p>

  <?php isset($_['stats']) && $_['stats']->printPage(); ?>

  <h2>Reset database</h2>
  <?php if ($_['reset'] === true) { ?>
  <p class="success">
   Database has been reset!
  </p>
  <?php } else if ($_['reset'] === false) { ?>
  <p class="error">
   Database has <b>not</b> been reset!
  </p>
  <?php } ?>

  <p>
   To reset the database, enter your user name and click "reset database":
  </p>
  <form method="POST" action="<?php p(OCP\Util::linkToRoute('grauphel.gui.databaseReset')); ?>">
    <input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>"/>
    <p>
     <label>Username: <input type="text" name="username" value="" autocomplete="off" /></label>
     <button type="submit">Reset database</button>
    </p>
  </form>
</div>