Register form tweaked
This commit is contained in:
17
templates/forms/inputs/register-captcha.html.twig
Normal file
17
templates/forms/inputs/register-captcha.html.twig
Normal file
@@ -0,0 +1,17 @@
|
||||
{% block input_user_locale %}
|
||||
{% if site.registration.captcha %}
|
||||
{% if col_width %}<div class="{{col_width}}">{% endif %}
|
||||
<div class="form-group">
|
||||
<label class="sr-only" for="input-register-captcha">{{translate('CAPTCHA.VERIFY')}}</label>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<input type="text" id="input-register-captcha" name="captcha" placeholder="{{translate('CAPTCHA.SPECIFY')}}" class="form-control">
|
||||
</div>
|
||||
<div class="col-md-6 form-col-captcha">
|
||||
<img src="{{site.uri.public}}/account/captcha" id="captcha" data-target="#input-register-captcha">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% if col_width %}</div>{% endif %}
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user