| 123456789101112131415161718192021222324 |
- <?php
- /* @var $this yii\web\View */
- /* @var $form yii\bootstrap4\ActiveForm */
- /* @var $model app\models\ContactForm */
- use yii\bootstrap4\ActiveForm;
- use yii\bootstrap4\Html;
- use yii\captcha\Captcha;
- $this->title = 'Поповнити рахунок';
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?php $form = ActiveForm::begin(['id' => 'payment-form']); ?>
- <?= $form->field($model, 'amount')->textInput(['autofocus' => true]) ?>
- <div class="form-group">
- <?= Html::submitButton('Сплатити', ['class' => 'btn btn-success', 'name' => 'pay-button']) ?>
- </div>
- <?php ActiveForm::end(); ?>
|