8
0
miroir de https://git.d3data.de/3rdParty/captcha-module.git synchronisé 2024-11-17 04:03:22 +01:00
captcha-module/application/views/blocks/captcha_form.tpl
Steffen Winde 6413e1b907
Update captcha_form.tpl
Template adapted for bootstrap
2019-08-07 19:25:08 +02:00

21 lignes
914 B
Smarty

[{$smarty.block.parent}]
[{assign var="oCaptcha" value=$oView->getCaptcha()}]
<div class="form-group">
<input type="hidden" name="c_mach" value="[{$oCaptcha->getHash()}]"/>
<label class="control-label col-lg-2 req">[{oxmultilang ident="VERIFICATION_CODE" suffix="COLON"}]</label>
<div class="col-lg-10 controls verify">
[{assign var="oCaptcha" value=$oView->getCaptcha()}]
[{if $oCaptcha->isImageVisible()}]
<img src="[{$oCaptcha->getImageUrl()}]" alt="">
[{else}]
<span class="verificationCode" id="verifyTextCode">[{$oCaptcha->getText()}]</span>
[{/if}]
<input type="text" data-fieldsize="verify" name="c_mac" value="" class="js-oxValidate js-oxValidate_notEmpty">
<p class="oxValidateError">
<span class="js-oxError_notEmpty">[{oxmultilang ident="ERROR_MESSAGE_INPUT_NOTALLFIELDS"}]</span>
</p>
</div>
</div>