Blame view

common/components/views/siteSearch.php 612 Bytes
c7f222e2   Artem   first
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php

  use yii\widgets\ActiveForm;

  use yii\helpers\Html;

  use yii\helpers\Url;

  ?>

  <?php $form = ActiveForm::begin(['options' => ['enctype'=> 'multipart/form-data','id'=>'search-form', 'class'=>'search-form'], 'action' => Url::toRoute('site/search'), 'method'=>'get']); ?>

  

  <?= $form->field($model, 'string',[

      'options'=>

          [

              'tag'=>'label',

          ],

      'template' => "{input}",

  ])->textInput(['maxlength' => 255, 'id'=>'search-field','placeholder' => 'ПОИСК ПО САЙТУ']) ?>

      <input id = "search-buttom" type = "submit"  value="" >

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