|
|
@@ -3,7 +3,9 @@
|
|
|
<h1><?= _t('gen.auth.login') ?></h1>
|
|
|
|
|
|
<?php if (!max_registrations_reached()) { ?>
|
|
|
- <a href="<?= _url('auth', 'register') ?>"><?= _t('gen.auth.registration.ask') ?></a>
|
|
|
+ <div class="link-registration">
|
|
|
+ <a href="<?= _url('auth', 'register') ?>"><?= _t('gen.auth.registration.ask') ?></a>
|
|
|
+ </div>
|
|
|
<?php } ?>
|
|
|
|
|
|
<form id="crypto-form" method="post" action="<?= _url('auth', 'login') ?>">
|
|
|
@@ -39,6 +41,11 @@
|
|
|
</button>
|
|
|
</div>
|
|
|
</form>
|
|
|
-
|
|
|
- <p><a href="<?= _url('index', 'about') ?>"><?= _t('gen.freshrss.about') ?></a></p>
|
|
|
</main>
|
|
|
+
|
|
|
+<footer class="main-footer">
|
|
|
+ <a href="<?= _url('index', 'about') ?>"><?= _t('gen.freshrss.about') ?></a>
|
|
|
+ <?php if (file_exists(TOS_FILENAME)) { ?>
|
|
|
+ | <a href="<?= _url('index', 'tos') ?>"><?= _t('index.tos.title')?></a>
|
|
|
+ <?php } ?>
|
|
|
+</footer>
|