create.php 864 B

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