emailConfirmationFailed.php 578 B

12345678910111213141516171819202122
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. /**
  5. * @var yii\web\View $this
  6. * @var yii\widgets\ActiveForm $form
  7. * @var \frontend\models\User $model
  8. */
  9. $this->title = 'Signup';
  10. $this->params['breadcrumbs'][] = $this->title;
  11. $params = Yii::$app->params;
  12. ?>
  13. <div class="site-signup alert alert-danger">
  14. <h1>Could not complete registration</h1>
  15. <p>You either supplied an invalid confirmation link or the link has meanwhile expired.
  16. Please contact our support under <?= Html::mailTo($params['support.name'], $params['support.email']) ?>.
  17. </p>
  18. </div>