You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_form.php 754B

1234567891011121314151617181920212223242526
  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. /* @var $this yii\web\View */
  5. /* @var $model common\models\User */
  6. /* @var $form yii\widgets\ActiveForm */
  7. ?>
  8. <div class="user-form">
  9. <?php $form = ActiveForm::begin(); ?>
  10. <?= $form->field($model, 'nom')->textInput() ?>
  11. <?= $form->field($model, 'prenom')->textInput() ?>
  12. <?= $form->field($model, 'telephone')->textInput() ?>
  13. <?= $form->field($model, 'email')->textInput() ?>
  14. <?= $form->field($model, 'adresse')->textarea() ?>
  15. <div class="form-group">
  16. <?= Html::submitButton($model->isNewRecord ? 'Ajouter' : 'Modifier', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
  17. </div>
  18. <?php ActiveForm::end(); ?>
  19. </div>