Commit badea404 by Alexander Makarov

Merge pull request #5238 from mikehaertl/master

Update app templates to use bootstrap ActiveForm
parents 4c47938f 33813b64
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\bootstrap\ActiveForm;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $form yii\widgets\ActiveForm */ /* @var $form yii\bootstrap\ActiveForm */
/* @var $model \common\models\LoginForm */ /* @var $model \common\models\LoginForm */
$this->title = 'Login'; $this->title = 'Login';
......
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\bootstrap\ActiveForm;
use yii\captcha\Captcha; use yii\captcha\Captcha;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $form yii\widgets\ActiveForm */ /* @var $form yii\bootstrap\ActiveForm */
/* @var $model \frontend\models\ContactForm */ /* @var $model \frontend\models\ContactForm */
$this->title = 'Contact'; $this->title = 'Contact';
......
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\bootstrap\ActiveForm;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $form yii\widgets\ActiveForm */ /* @var $form yii\bootstrap\ActiveForm */
/* @var $model \common\models\LoginForm */ /* @var $model \common\models\LoginForm */
$this->title = 'Login'; $this->title = 'Login';
......
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\bootstrap\ActiveForm;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $form yii\widgets\ActiveForm */ /* @var $form yii\bootstrap\ActiveForm */
/* @var $model \frontend\models\PasswordResetRequestForm */ /* @var $model \frontend\models\PasswordResetRequestForm */
$this->title = 'Request password reset'; $this->title = 'Request password reset';
......
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\bootstrap\ActiveForm;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $form yii\widgets\ActiveForm */ /* @var $form yii\bootstrap\ActiveForm */
/* @var $model \frontend\models\ResetPasswordForm */ /* @var $model \frontend\models\ResetPasswordForm */
$this->title = 'Reset password'; $this->title = 'Reset password';
......
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\bootstrap\ActiveForm;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $form yii\widgets\ActiveForm */ /* @var $form yii\bootstrap\ActiveForm */
/* @var $model \frontend\models\SignupForm */ /* @var $model \frontend\models\SignupForm */
$this->title = 'Signup'; $this->title = 'Signup';
......
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\bootstrap\ActiveForm;
use yii\captcha\Captcha; use yii\captcha\Captcha;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $form yii\widgets\ActiveForm */ /* @var $form yii\bootstrap\ActiveForm */
/* @var $model app\models\ContactForm */ /* @var $model app\models\ContactForm */
$this->title = 'Contact'; $this->title = 'Contact';
......
<?php <?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\bootstrap\ActiveForm;
/* @var $this yii\web\View */ /* @var $this yii\web\View */
/* @var $form yii\widgets\ActiveForm */ /* @var $form yii\bootstrap\ActiveForm */
/* @var $model app\models\LoginForm */ /* @var $model app\models\LoginForm */
$this->title = 'Login'; $this->title = 'Login';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment