Advertisement
nazmiwafiy

_search.php

Dec 6th, 2018
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.65 KB | None | 0 0
  1. <?php
  2.  
  3. use yii\helpers\Html;
  4. use yii\widgets\ActiveForm;
  5.  
  6. /* @var $this yii\web\View */
  7. /* @var $model frontend\models\ContactSearch */
  8. /* @var $form yii\widgets\ActiveForm */
  9. ?>
  10.  
  11. <div class="contact-search">
  12.  
  13.     <?php $form = ActiveForm::begin([
  14.         'action' => ['index'],
  15.         'method' => 'get',
  16.     ]); ?>
  17.  
  18.     <?= $form->field($model, 'name') ?>
  19.  
  20.     <?= $form->field($model, 'email') ?>
  21.  
  22.     <div class="form-group">
  23.         <?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
  24.         <?= Html::resetButton('Reset', ['class' => 'btn btn-default']) ?>
  25.     </div>
  26.  
  27.     <?php ActiveForm::end(); ?>
  28.  
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement