1
0
Fork 0
mirror of https://github.com/janickiy/yii2-nomer synced 2025-02-12 18:11:52 +00:00
yii2-nomer/views/try/check.php
2020-02-05 06:34:26 +03:00

31 lines
881 B
PHP

<?php
use yii\helpers\Html;
use yii\widgets\MaskedInput;
/* @var $this \yii\web\View */
/* @var $user \app\models\User */
$user = \Yii::$app->getUser()->getIdentity();
?>
<div class="search">
<div class="clfix">
<h2>Подтверждение номера</h2>
<p>Введите код из смс которая была отправлена на номер <?=$user->phone; ?></p><br />
<?=Html::beginForm(["try/check"]);?>
<?= MaskedInput::widget([
'name' => 'code',
'mask' => '9 9 9 9',
'options' => [
'type' => 'tel',
'class' => 'searchPhone searchPhoneMain',
'placeholder' => '_ _ _ _'
]
]); ?>
<input type="submit" class="searchBtn inpBtn" value="Подтвердить">
<?=Html::endForm();?>
</div>
</div>