mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-04-20 22:37:24 -04:00
* replace div with main * include the slider into main * format source * add close icon for the extension slider * replace div with main * Update shortcut.phtml * fixed the nits
23 lines
602 B
PHTML
23 lines
602 B
PHTML
<main class="post">
|
|
<p>
|
|
<?= _t('user.email.validation.need_to', FreshRSS_Context::$system_conf->title) ?>
|
|
</p>
|
|
|
|
<p>
|
|
<?= _t('user.email.validation.email_sent_to', FreshRSS_Context::$user_conf->mail_login) ?>
|
|
</p>
|
|
|
|
<form action="<?= _url('user', 'sendValidationEmail') ?>" method="post">
|
|
<input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" />
|
|
<button type="submit" class="btn">
|
|
<?= _t('user.email.validation.resend_email') ?>
|
|
</button>
|
|
</form>
|
|
|
|
<p>
|
|
<small>
|
|
<?= _t('user.email.validation.change_email', _url('user', 'profile')) ?>
|
|
</small>
|
|
</p>
|
|
</main>
|