12345678910111213141516171819202122232425 |
- <?php
- /**
- * Created by PhpStorm.
- * User: NODELOG
- * Date: 16/6/7
- * Time: 上午11:45
- */
- /**
- * @var $this \yii\web\View;
- */
- $this->title = '发新私信';
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="clearfix">
- <a href="<?= \yii\helpers\Url::to(['index']) ?>" class="btn btn-success btn-sm pull-right"><?= \yii\helpers\Html::icon('arrow-left') ?> 返回列表</a>
- </div>
- <?php $form = \yii\widgets\ActiveForm::begin() ?>
- <?= $form->field($model, 'toUsername') ?>
- <?= $form->field($model, 'toUid')->label(false)->hiddenInput() ?>
- <?= $form->field($model, 'content')->textarea(['rows' => 5]) ?>
- <div class="form-group">
- <?= \yii\helpers\Html::submitButton('发送', ['class' => 'btn btn-primary btn-block']) ?>
- </div>
- <?php \yii\widgets\ActiveForm::end() ?>
|