miniflux-legacy/templates/config.php

54 lines
2.1 KiB
PHP
Raw Normal View History

2013-02-18 03:48:21 +01:00
<div class="page-header">
2013-04-13 03:08:55 +02:00
<h2><?= t('Preferences') ?></h2>
2013-02-18 03:48:21 +01:00
</div>
2013-03-27 02:54:26 +01:00
<section>
<form method="post" action="?action=config" autocomplete="off">
2013-02-18 03:48:21 +01:00
2013-04-13 03:08:55 +02:00
<?= Helper\form_label(t('Username'), 'username') ?>
2013-02-18 03:48:21 +01:00
<?= Helper\form_text('username', $values, $errors, array('required')) ?><br/>
2013-04-13 03:08:55 +02:00
<?= Helper\form_label(t('Password'), 'password') ?>
2013-03-27 02:54:26 +01:00
<?= Helper\form_password('password', $values, $errors) ?><br/>
2013-02-18 03:48:21 +01:00
2013-04-13 03:08:55 +02:00
<?= Helper\form_label(t('Confirmation'), 'confirmation') ?>
2013-02-18 03:48:21 +01:00
<?= Helper\form_password('confirmation', $values, $errors) ?><br/>
2013-04-13 03:08:55 +02:00
<?= Helper\form_label(t('Language'), 'language') ?>
<?= Helper\form_select('language', $languages, $values, $errors) ?><br/>
2013-02-18 03:48:21 +01:00
<div class="form-actions">
2013-04-13 03:08:55 +02:00
<input type="submit" value="<?= t('Update') ?>" class="btn btn-blue"/>
2013-02-18 03:48:21 +01:00
</div>
</form>
2013-03-27 02:54:26 +01:00
</section>
<div class="page-section">
2013-04-13 03:08:55 +02:00
<h2><?= t('More informations') ?></h2>
</div>
2013-03-27 02:54:26 +01:00
<section>
2013-04-04 03:18:30 +02:00
<div class="alert alert-normal">
2013-04-13 03:08:55 +02:00
<h3><?= t('Database') ?></h3>
2013-04-04 03:18:30 +02:00
<ul>
2013-04-13 03:08:55 +02:00
<li><?= t('Database size:') ?> <?= Helper\format_bytes($db_size) ?></li>
<li><a href="?action=optimize-db"><?= t('Optimize the database') ?></a> <?= t('(VACUUM command)') ?></li>
<li><a href="?action=download-db"><?= t('Download the entire database') ?></a> <?= t('(Gzip compressed Sqlite file)') ?></li>
2013-04-04 03:18:30 +02:00
</ul>
</div>
<div class="alert alert-normal">
2013-04-13 03:08:55 +02:00
<h3><?= t('Keyboard shortcuts') ?></h3>
2013-04-04 03:18:30 +02:00
<ul>
2013-04-13 03:08:55 +02:00
<li><?= t('Previous item') ?> = <strong>p</strong></li>
<li><?= t('Next item') ?> = <strong>n</strong></li>
<li><?= t('Mark as read or unread') ?> = <strong>m</strong></li>
<li><?= t('Open original link') ?> = <strong>v</strong></li>
<li><?= t('Open item') ?> = <strong>o</strong></li>
2013-04-04 03:18:30 +02:00
</ul>
</div>
<div class="alert alert-normal">
2013-04-13 03:08:55 +02:00
<h3><?= t('About') ?></h3>
2013-04-04 03:18:30 +02:00
<ul>
2013-04-13 03:08:55 +02:00
<li><?= t('Miniflux version:') ?> <strong><?= APP_VERSION ?></strong></li>
<li><?= t('Official website:') ?> <a href="http://miniflux.net" target="_blank">http://miniflux.net</a></li>
2013-04-04 03:18:30 +02:00
</ul>
</div>
</section>