Increased minimum length of the name to 3
This commit is contained in:
parent
5b6a069137
commit
3a865bd010
1 changed files with 1 additions and 1 deletions
|
@ -197,7 +197,7 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="description input justify-center">
|
<div class="description input justify-center">
|
||||||
<label for="name" class="control-label">{% trans "Name"%}</label>
|
<label for="name" class="control-label">{% trans "Name"%}</label>
|
||||||
<input type="text" name="name" class="form-control" placeholder="{% trans 'Your Name'%}" data-error="{% trans 'Please enter your name' %}" required>
|
<input type="text" name="name" class="form-control" placeholder="{% trans 'Your Name'%}" data-minlength="3" data-error="{% trans 'Please enter your name' %}" required>
|
||||||
</div>
|
</div>
|
||||||
<div class="help-block with-errors">
|
<div class="help-block with-errors">
|
||||||
{% for message in messages %}
|
{% for message in messages %}
|
||||||
|
|
Loading…
Reference in a new issue