| Current Path : /var/www/html/jppmportal/backend/views/alert/ |
| Current File : /var/www/html/jppmportal/backend/views/alert/_search.php |
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/* @var $this yii\web\View */
/* @var $model app\models\AlertSearch */
/* @var $form yii\widgets\ActiveForm */
?>
<div class="well col col-sm-12">
<?php
$form = ActiveForm::begin([
'action' => ['index'],
'method' => 'get',
]);
?>
<div class="row">
<?php echo $form->field($model, 'message', ['labelOptions' => ['class' => 'control-label col-xs-2']])->textInput(['class' => 'control-label col-xs-3']); ?>
</div>
<br>
<div class="form-group">
<?= Html::submitButton("<i class=\"fa fa-search\"></i> ".Yii::t('app', 'Cari'), ['class' => 'btn btn-primary']) ?>
<?= Html::a("<i class=\"fa fa-refresh\"></i> " . Yii::t('app','Set Semula'), ['index'], ['class' => 'btn btn-warning']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>