Answer the question
In order to leave comments, you need to log in
How to display captcha in Yii2?
Hello!
How can I display captcha with the following template (how to organize such a template):
<div class="form-group">
<div ... >{image}<div>
</div>
<div class="form-group">
<label ... >{label}</label>
<div ... >
{input}
{error}
</div>
</div>
Answer the question
In order to leave comments, you need to log in
The captcha has a widget that has a template property where you need to specify {image} and {input} + your html
<?=\yii\captcha\Captcha::widget([
'name' => 'captcha',
'template' => '<div class="form-group">
<div>{image}<div></div>
<div class="form-group">
{input}
</div>',
]);?>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question