Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
badea404
Commit
badea404
authored
Sep 29, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5238 from mikehaertl/master
Update app templates to use bootstrap ActiveForm
parents
4c47938f
33813b64
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
16 deletions
+16
-16
login.php
apps/advanced/backend/views/site/login.php
+2
-2
contact.php
apps/advanced/frontend/views/site/contact.php
+2
-2
login.php
apps/advanced/frontend/views/site/login.php
+2
-2
requestPasswordResetToken.php
...dvanced/frontend/views/site/requestPasswordResetToken.php
+2
-2
resetPassword.php
apps/advanced/frontend/views/site/resetPassword.php
+2
-2
signup.php
apps/advanced/frontend/views/site/signup.php
+2
-2
contact.php
apps/basic/views/site/contact.php
+2
-2
login.php
apps/basic/views/site/login.php
+2
-2
No files found.
apps/advanced/backend/views/site/login.php
View file @
badea404
<?php
use
yii\helpers\Html
;
use
yii\
widgets
\ActiveForm
;
use
yii\
bootstrap
\ActiveForm
;
/* @var $this yii\web\View */
/* @var $form yii\
widgets
\ActiveForm */
/* @var $form yii\
bootstrap
\ActiveForm */
/* @var $model \common\models\LoginForm */
$this
->
title
=
'Login'
;
...
...
apps/advanced/frontend/views/site/contact.php
View file @
badea404
<?php
use
yii\helpers\Html
;
use
yii\
widgets
\ActiveForm
;
use
yii\
bootstrap
\ActiveForm
;
use
yii\captcha\Captcha
;
/* @var $this yii\web\View */
/* @var $form yii\
widgets
\ActiveForm */
/* @var $form yii\
bootstrap
\ActiveForm */
/* @var $model \frontend\models\ContactForm */
$this
->
title
=
'Contact'
;
...
...
apps/advanced/frontend/views/site/login.php
View file @
badea404
<?php
use
yii\helpers\Html
;
use
yii\
widgets
\ActiveForm
;
use
yii\
bootstrap
\ActiveForm
;
/* @var $this yii\web\View */
/* @var $form yii\
widgets
\ActiveForm */
/* @var $form yii\
bootstrap
\ActiveForm */
/* @var $model \common\models\LoginForm */
$this
->
title
=
'Login'
;
...
...
apps/advanced/frontend/views/site/requestPasswordResetToken.php
View file @
badea404
<?php
use
yii\helpers\Html
;
use
yii\
widgets
\ActiveForm
;
use
yii\
bootstrap
\ActiveForm
;
/* @var $this yii\web\View */
/* @var $form yii\
widgets
\ActiveForm */
/* @var $form yii\
bootstrap
\ActiveForm */
/* @var $model \frontend\models\PasswordResetRequestForm */
$this
->
title
=
'Request password reset'
;
...
...
apps/advanced/frontend/views/site/resetPassword.php
View file @
badea404
<?php
use
yii\helpers\Html
;
use
yii\
widgets
\ActiveForm
;
use
yii\
bootstrap
\ActiveForm
;
/* @var $this yii\web\View */
/* @var $form yii\
widgets
\ActiveForm */
/* @var $form yii\
bootstrap
\ActiveForm */
/* @var $model \frontend\models\ResetPasswordForm */
$this
->
title
=
'Reset password'
;
...
...
apps/advanced/frontend/views/site/signup.php
View file @
badea404
<?php
use
yii\helpers\Html
;
use
yii\
widgets
\ActiveForm
;
use
yii\
bootstrap
\ActiveForm
;
/* @var $this yii\web\View */
/* @var $form yii\
widgets
\ActiveForm */
/* @var $form yii\
bootstrap
\ActiveForm */
/* @var $model \frontend\models\SignupForm */
$this
->
title
=
'Signup'
;
...
...
apps/basic/views/site/contact.php
View file @
badea404
<?php
use
yii\helpers\Html
;
use
yii\
widgets
\ActiveForm
;
use
yii\
bootstrap
\ActiveForm
;
use
yii\captcha\Captcha
;
/* @var $this yii\web\View */
/* @var $form yii\
widgets
\ActiveForm */
/* @var $form yii\
bootstrap
\ActiveForm */
/* @var $model app\models\ContactForm */
$this
->
title
=
'Contact'
;
...
...
apps/basic/views/site/login.php
View file @
badea404
<?php
use
yii\helpers\Html
;
use
yii\
widgets
\ActiveForm
;
use
yii\
bootstrap
\ActiveForm
;
/* @var $this yii\web\View */
/* @var $form yii\
widgets
\ActiveForm */
/* @var $form yii\
bootstrap
\ActiveForm */
/* @var $model app\models\LoginForm */
$this
->
title
=
'Login'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment