34 lines
834 B
PHP
Executable File
34 lines
834 B
PHP
Executable File
<?php
|
|
|
|
use yii\helpers\Html;
|
|
use yii\widgets\ActiveForm;
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $model backend\modules\interview\models\InterviewRequest */
|
|
/* @var $form yii\widgets\ActiveForm */
|
|
?>
|
|
|
|
<div class="interview-request-form">
|
|
|
|
<?php $form = ActiveForm::begin(); ?>
|
|
|
|
<?= $form->field($model, 'email')->textInput(['maxlength' => true]) ?>
|
|
|
|
<?= $form->field($model, 'phone')->textInput(['maxlength' => true]) ?>
|
|
|
|
<?= $form->field($model, 'profile_id')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'user_id')->textInput() ?>
|
|
|
|
<?= $form->field($model, 'comment')->textarea(['rows' => 6]) ?>
|
|
|
|
<?= $form->field($model, 'created_at')->textInput() ?>
|
|
|
|
<div class="form-group">
|
|
<?= Html::submitButton('Save', ['class' => 'btn btn-success']) ?>
|
|
</div>
|
|
|
|
<?php ActiveForm::end(); ?>
|
|
|
|
</div>
|