mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-25 05:37:56 -05:00
* Take advantage of PHP 5.4+ short echo https://php.net/migration54.new-features thanks to https://github.com/FreshRSS/FreshRSS/pull/2495 Use `<?= ?>` instead of `<?php echo; ?>` 10kB of code saved :-) Done with regular expression: ``` <\?php echo (.+?);? *\?> <?= \1 ?> ``` * Try Travis fix https://github.com/squizlabs/PHP_CodeSniffer/issues/2045#issuecomment-395238272
23 lines
600 B
PHTML
23 lines
600 B
PHTML
<div 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>
|
|
</div>
|