Blame view

backend/views/parser/parser.php 240 Bytes
58743b31   Mihail   init commit - bas...
1
2
3
4
5
6
7
8
9
10
11
  <?php
  use yii\widgets\ActiveForm;
  ?>
  
  <?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]) ?>
  
  <?= $form->field($model, 'file')->fileInput() ?>
  
  <button>Отправить</button>
  
  <?php ActiveForm::end() ?>