create.php 844 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $form yii\bootstrap\ActiveForm */
  4. /* @var $model \frontend\models\SignupForm */
  5. use yii\helpers\Html;
  6. use yii\bootstrap\ActiveForm;
  7. $this->title = 'Signup';
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="site-signup">
  11. <h1><?= Html::encode($this->title) ?></h1>
  12. <p>Please fill out the following fields to signup:</p>
  13. <div class="row">
  14. <div class="col-lg-5">
  15. <?php $form = ActiveForm::begin(['id' => 'form-signup']); ?>
  16. <?= $form->field($model, 'admin_name')->textInput(['autofocus' => true]) ?>
  17. <div class="form-group">
  18. <?= Html::submitButton('Signup', ['class' => 'btn btn-primary', 'name' => 'signup-button']) ?>
  19. </div>
  20. <?php ActiveForm::end(); ?>
  21. </div>
  22. </div>
  23. </div>