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