Your IP : 216.73.216.79


Current Path : /var/www/html/crm/views/notes/
Upload File :
Current File : /var/www/html/crm/views/notes/_search.php

<?php

use yii\helpers\Html;
use yii\widgets\ActiveForm;

/* @var $this yii\web\View */
/* @var $model app\models\ParamCatSearch */
/* @var $form yii\widgets\ActiveForm */
$this->registerCss(".topsection-search label{margin-right:1em;}");
?>
<div class="topsection-search mt-4 mb-4">
    <?php $form = ActiveForm::begin(['action' => ['index'], 'method' => 'get', 'options' => ['class' => 'form-inline form-search']]); ?>
    <?= $form->field($model, 'searchstring')->textInput(); ?>
    <div class="form-group">
        &nbsp;&nbsp;<?= Html::submitButton('Search', ['class' => 'btn btn-brand']) ?>
        &nbsp;&nbsp;<?= Html::a('Reset', ['index'], ['class' => 'btn btn-outline-brand']) ?>
        &nbsp;&nbsp;<?= Html::a('Add ' . $this->title, ['create'], ['class' => 'btn btn-brand']) ?>
    </div>
    <?php ActiveForm::end(); ?>
</div>