Blame view

app/modules/admin/views/import/index.php 581 Bytes
bf807468   Alex Savenko   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  <?php

  use yii\helpers\Html;

  use yii\helpers\ArrayHelper;

  use yii\bootstrap\ActiveForm;

  ?>

  <?

  $this->title = 'Импорт';

  $this->params['breadcrumbs'][] = $this->title;

  ?>

  <h1>Импорт</h1>

  

      <?php $form = ActiveForm::begin([

          'id' => 'form',

          'options' => ['enctype' => 'multipart/form-data'],

  

      ]); ?>

  

  

  

         

        <?= $form->field($model, 'file')->fileInput() ?>

  

      

  

  

      <?= Html::submitButton('Загрузить', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?>

  

  

  

      <?php ActiveForm::end(); ?>