{% extends "base.html" %} {% block title %} {% trans %}Add a fetched account{% endtrans %} {% endblock %} {% block subtitle %} {{ user }} {% endblock %} {% block content %}
{{ form.hidden_tag() }} {% call macros.box(title="Remote server") %} {{ macros.form_field(form.protocol) }} {{ macros.form_fields((form.host, form.port)) }} {{ macros.form_field(form.tls) }} {% endcall %} {% call macros.box(title="Authentication") %} {{ macros.form_field(form.username) }} {{ macros.form_field(form.password) }} {% endcall %} {% call macros.box(title="Settings") %} {{ macros.form_field(form.keep) }} {% endcall %} {{ macros.form_field(form.submit) }}
{% endblock %}