Register form tweaked
This commit is contained in:
14
templates/forms/inputs/register-password.html.twig
Normal file
14
templates/forms/inputs/register-password.html.twig
Normal file
@@ -0,0 +1,14 @@
|
||||
{% block input_user_password %}
|
||||
{% if 'password' not in form.fields.hidden %}
|
||||
{% if col_width %}<div class="{{col_width}}">{% endif %}
|
||||
<div class="form-group">
|
||||
<label for="input-register-password" class="control-label">{{translate('PASSWORD')}}</label>
|
||||
<input type="password" id="input-register-password" name="password" placeholder="{{translate('PASSWORD.BETWEEN', {min: site.password.length.min, max: site.password.length.max})}}" class="form-control">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="sr-only control-label" for="input-register-passwordc">{{translate('PASSWORD.CONFIRM')}}</label>
|
||||
<input type="password" id="input-register-passwordc" name="passwordc" placeholder="{{translate('PASSWORD.CONFIRM')}}" class="form-control">
|
||||
</div>
|
||||
{% if col_width %}</div>{% endif %}
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user