Issue 5160: Update base app to use bootstrap ActiveForm

This commit is contained in:
Michael Härtl 2014-09-29 13:18:59 +02:00
parent 039225e550
commit ac46b6dab6
2 changed files with 4 additions and 4 deletions

View File

@ -1,10 +1,10 @@
<?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';

View File

@ -1,9 +1,9 @@
<?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';