|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
-
-
-
- use yii\helpers\Html;
- use yii\bootstrap\ActiveForm;
- use yii\captcha\Captcha;
-
-
-
-
- $this->title = 'Me contacter';
- $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>
|