guild/frontend/modules/card/views/user-card/password.php

26 lines
478 B
PHP
Raw Normal View History

2020-01-22 12:18:03 +03:00
<?php
2020-09-09 16:37:35 +03:00
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model */
/* @var $form yii\widgets\ActiveForm */
2020-01-22 12:18:03 +03:00
?>
2020-09-09 16:37:35 +03:00
<div class="user-card-form">
<?php $form = ActiveForm::begin(); ?>
2020-01-22 12:18:03 +03:00
2020-09-09 16:37:35 +03:00
<?= Html::input('text', 'password', '', ['class' => 'form-control custom-input']) ?>
2020-01-22 12:18:03 +03:00
2020-09-09 16:37:35 +03:00
<br>
2020-01-22 12:18:03 +03:00
2020-09-09 16:37:35 +03:00
<div class="form-group">
<?= Html::submitButton('Save', ['class' => 'btn btn-success']) ?>
</div>
2020-01-22 12:18:03 +03:00
2020-09-09 16:37:35 +03:00
<?php ActiveForm::end(); ?>
2020-01-22 12:18:03 +03:00
2020-09-09 16:37:35 +03:00
</div>