550eac02
Administrator
second
|
1
2
3
4
5
6
7
8
9
10
11
|
<?php
use yii\helpers\Html;
use yii\web\View;
use yii\bootstrap\ActiveForm;
use yii\captcha\Captcha;
$this->title = 'Регистрация';
$this->params['breadcrumbs'][] = $this->title;
|
3a8a9bd9
Administrator
image size
|
12
|
$this->registerJsFile(Yii::$app->request->baseUrl.'/js/jquery.mask.js',['position'=>View::POS_END,'depends'=>['yii\web\YiiAsset']]);
|
550eac02
Administrator
second
|
13
14
|
$this->registerJs("
|
7ba4acc5
Administrator
after marge
|
15
|
$('#customer-phone').mask('(000) 000-0000');
|
550eac02
Administrator
second
|
16
17
18
19
20
21
22
|
", View::POS_READY, 'mask');
?>
<div class="col-md-6 col-md-offset-3">
<h1><?= Html::encode($this->title) ?></h1>
<?php $form = ActiveForm::begin([
'id' => 'reg-form',
|
7ba4acc5
Administrator
after marge
|
23
|
'options' => ['class' => 'form-vertical']
|
550eac02
Administrator
second
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
]); ?>
<?= $form->field($model, 'username') ?>
<?= $form->field($model, 'password')->passwordInput() ?>
<?= $form->field($model, 'password_repeat')->passwordInput() ?>
<?= $form->field($model, 'name') ?>
<?= $form->field($model, 'surname') ?>
<?= $form->field($model, 'phone') ?>
<?= $form->field($model, 'verifyCode')->widget(Captcha::className(),['captchaAction'=>'reg/captcha']) ?>
|
550eac02
Administrator
second
|
40
41
42
43
44
45
46
|
<div class="form-group">
<?= Html::submitButton(' Регистрация ', ['class' => 'btn btn-primary btn-lg btn-block', 'name' => 'login-button']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>
|
3f2bc3d0
Administrator
first commit
|
47
|
|