Adds placeholder to name field, fixes #25
This commit is contained in:
parent
f12c7b4849
commit
85790c0a45
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@
|
|||
{% if current_user.is_anonymous() %}
|
||||
<div class="form-group{{ ' has-error' if form.name.errors }}{{ ' required' if form.name.flags.required }}">
|
||||
{{ form.name.label(class='control-label') }}
|
||||
{{ form.name(class='form-control') }}
|
||||
{{ form.name(class='form-control', placeholder='Fill in your name...') }}
|
||||
{{ util.render_form_field_errors(form.name) }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue