32 lines
686 B
PHP
32 lines
686 B
PHP
|
<?php
|
||
|
|
||
|
use yii\helpers\Html;
|
||
|
use yii\widgets\ActiveForm;
|
||
|
|
||
|
/** @var yii\web\View $this */
|
||
|
/** @var app\models\CountrySearch $model */
|
||
|
/** @var yii\widgets\ActiveForm $form */
|
||
|
?>
|
||
|
|
||
|
<div class="country-search">
|
||
|
|
||
|
<?php $form = ActiveForm::begin([
|
||
|
'action' => ['index'],
|
||
|
'method' => 'get',
|
||
|
]); ?>
|
||
|
|
||
|
<?= $form->field($model, 'code') ?>
|
||
|
|
||
|
<?= $form->field($model, 'name') ?>
|
||
|
|
||
|
<?= $form->field($model, 'population') ?>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?>
|
||
|
<?= Html::resetButton('Reset', ['class' => 'btn btn-outline-secondary']) ?>
|
||
|
</div>
|
||
|
|
||
|
<?php ActiveForm::end(); ?>
|
||
|
|
||
|
</div>
|