{% extends "security/panel.html" %} {% block panel_title %}{{ _('%(appname)s Login', appname=config.APP_NAME) }}{% endblock %} {% block panel_body %} {% if config.SERVER_MODE %}
{{ login_user_form.hidden_tag() }} {% set user_language = request.cookies.get('PGADMIN_LANGUAGE') or 'en' %} {{ render_field_with_errors(login_user_form.email, "text") }} {{ render_field_with_errors(login_user_form.password, "password") }}
{{ _('Forgotten your password?', url=url_for('browser.forgot_password')) }}
{% endif %} {% endblock %}