Skip to content

Commit 9f06e4f

Browse files
author
Joshua Heller
committed
large inputs
1 parent 5885f19 commit 9f06e4f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

views/default/login.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
<div class="row">
3030
<div class="col-lg-5">
31-
<?= $form->field($model, 'username', ['inputOptions' => ['autofocus' => true, 'class' => 'form-control']]) ?>
32-
<?= $form->field($model, 'password')->passwordInput() ?>
31+
<?= $form->field($model, 'username', ['inputOptions' => ['autofocus' => true, 'class' => 'form-control input-lg']]) ?>
32+
<?= $form->field($model, 'password', ['inputOptions' => ['class' => 'input-lg']])->passwordInput() ?>
3333
<?php if ($this->context->module->rememberMeDuration > 0): ?>
3434
<?= $form->field($model, 'rememberMe')->checkbox() ?>
3535
<?php endif; ?>

views/default/recovery.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
<?= $this->render('_newpassword', ['form' => $form, 'model' => $model, 'focus' => true]); ?>
4040

4141
<?php else: ?>
42-
<?= $form->field($model, 'username', ['inputOptions' => ['autofocus' => true, 'class' => 'form-control']]) ?>
43-
<?= $form->field($model, 'email') ?>
42+
<?= $form->field($model, 'username', ['inputOptions' => ['autofocus' => true, 'class' => 'form-control input-lg']]) ?>
43+
<?= $form->field($model, 'email', ['inputOptions' => ['class' => 'form-control input-lg']]) ?>
4444

4545
<?php if ($model->getBehavior('captcha') !== null): ?>
4646
<?= $this->render('_captcha', ['form' => $form, 'model' => $model]) ?>

0 commit comments

Comments
 (0)