mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-28 12:36:27 -05:00
* Add PHPStan #fix https://github.com/FreshRSS/FreshRSS/issues/4016 https://phpstan.org/ ```sh composer run-script phpstan ``` * More fixes * Fix global variables * Add .phtml * Fix merge https://github.com/FreshRSS/FreshRSS/pull/4090 * Fix more warnings * Fix view errors and enable in CI * ReturnTypeWillChange * Dynamic view type * Fix Minz static/self bug
24 lines
643 B
PHTML
24 lines
643 B
PHTML
<?php /** @var FreshRSS_View $this */ ?>
|
|
<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>
|