|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
-
-
-
- use yii\helpers\Html;
- use yii\bootstrap\ActiveForm;
- use yii\captcha\Captcha;
-
-
-
-
- $this->setTitle('Me contacter');
- $this->setMeta('description', 'Pour toute remarque ou demande d\'information, nous vous proposons d\'utiliser ce formulaire de contact.') ;
-
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <div class="site-contact">
- <h1 class="title-system-order">
- <span class="glyphicon glyphicon-envelope"></span>
- <?= Html::encode($this->title) ?>
- </h1>
-
- <div class="row">
- <div class="col-lg-5">
-
- <h2>par téléphone</h2>
- <p id="contact-phone">
- Guillaume Bourgeois<br />
- <span class="glyphicon glyphicon-phone"></span> 06 84 59 71 79
- </p>
-
- <h2>Par email</h2>
- <?php $form = ActiveForm::begin(['id' => 'contact-form']); ?>
- <?= $form->field($model, 'name') ?>
- <?= $form->field($model, 'email') ?>
- <?= $form->field($model, 'subject') ?>
- <?= $form->field($model, 'body')->textArea(['rows' => 6]) ?>
- <?= $form->field($model, 'verifyCode')->widget(Captcha::className(), [
- 'template' => '<div class="row"><div class="col-lg-3">{image}</div><div class="col-lg-6">{input}</div></div>',
- ]) ?>
- <div class="form-group">
- <?= Html::submitButton('Envoyer', ['class' => 'btn btn-primary', 'name' => 'contact-button']) ?>
- </div>
- <?php ActiveForm::end(); ?>
- </div>
- </div>
-
- </div>
|