{% extends "base.html" %} {% block title %}{{ _('Create Bot User')}} — {{ service_name }}{% endblock %} {% block content %}
{{ create_other_user_form.hidden_tag() }}
{% if create_other_user_form.name.name in create_other_user_form.errors %}{{ create_other_user_form.errors[create_other_user_form.name.name] | join(' ') }}{% endif %}
{% if create_other_user_form.email.name in create_other_user_form.errors %}{{ _('Please enter a valid email address.') }}{% endif %}
{% if create_other_user_form.password.name in create_other_user_form.errors %}{{ _('Please enter a password with at least 3 characters.')}}{% endif %}
{% endblock %}