Username and Password
{% if "manage_user" in request.path %}
Change the username and/or password for user {{username}}.
Proceed with caution. This will affect the user's ability to log in.
{% else %}
Enter the username and a temporary password for the user. The user should change this on their first log in.
{% endif %}
{{ wtf.form_field(form.password, class='form-control',
placeholder='Password') }}
{{ wtf.form_field(form.password2, class='form-control',
placeholder='Confirm Password') }}
{% for error in form.password.errors %}
{{ error }}
{% endfor %}