{% extends "appbuilder/base.html" %} {% block content %}
{{ title }} - SmartPip
{{form.hidden_tag()}}
{{ i18n('enter_credentials') }}
{{ form.username(size = 80, class = "form-control", autofocus = true) }}
{% for error in form.errors.get('openid', []) %} [{{error}}]
{% endfor %}
{{ form.password(size = 80, class = "form-control") }}
{% for error in form.errors.get('openid', []) %} [{{error}}]
{% endfor %}

{% if appbuilder.sm.auth_user_registration %} {{ i18n('register') }} {% endif %} {% if appbuilder.app.config.P_URL %} {{ i18n('sign_in_via_portal') }} {% endif %}
{% endblock %}