{% extends "base.html" %} {% block title %}Sign in to {{ network.label }}{% endblock %} {% block heading %}Sign in to {{ network.label }}{% endblock %} {% block body %} {# This network has no sign-in page to send anybody to, so socialchimp answered `start_login` with a list of fields instead of a link. Show one box per field, in the order given, and hide the ones marked secret. Nothing on this page leaves your app until the form is posted. #}

There is nowhere to send you: {{ network.label }} has no approval page. It uses an app password, which is not your real password and can be revoked on its own.

{% if help_url %}

Where to get one

{% endif %}
{% for field in fields %} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% endfor %}

Nothing typed here is written to a log. An app password is as good as a password for everything the API can do.

{% endblock %}