{% extends "base.html" %} {% block body %} {% if new_user %}
{{ gettext('Remember, your codename is:') }} {{ gettext('Show') }}
{{ gettext('Hide') }}

{{ codename }}


{% else %}
{% endif %}
{% include 'flashed.html' %} {% if flagged and not haskey %}
{{ gettext('Sorry we haven\'t responded yet!') }}

{{ gettext('Our SecureDrop recently experienced a surge of activity. For security reasons, the creation of a two-way communication channel was delayed until you checked in again.') }}

{{ gettext('Please rest assured that we were able to download your submission, and check back again later for a reply.') }}

{% endif %}
{% if allow_document_uploads %}

{{ gettext('Submit Files or Messages') }}

{{ gettext('You can submit any kind of file, a message, or both.') }}

{% else %}

{{ gettext('Submit Messages') }}

{% endif %}

{% if allow_document_uploads %} {{ gettext('If you are already familiar with GPG, you can optionally encrypt your files and messages with our public key before submission. Files are encrypted as they are received by SecureDrop.').format(url=url_for('info.download_public_key')) }} {% else %} {{ gettext('If you are already familiar with GPG, you can optionally encrypt your messages with our public key before submission.').format(url=url_for('info.download_public_key')) }} {% endif %} {{ gettext('Learn more.').format(url=url_for('info.why_download_public_key')) }}


{% if allow_document_uploads %}
{{ form.fh() }}

{{ gettext('Maximum upload size: 500 MB') }}

{% endif %}
{{ form.msg(class="fill-parent") }}

{{ gettext('CANCEL') }}

{{ gettext('Read Replies') }}

{% if replies %}
{% for reply in replies %}

{{ gettext('Delete this reply?') }} {{ gettext('Cancel') }}

{{ reply.decrypted | nl2br }}
{% endfor %}
{{ gettext('DELETE ALL REPLIES') }}

{{ gettext('Are you finished with the replies?') }}

{{ gettext('NO, NOT YET') }}
{% else %}

{{ gettext('— No Messages —') }}

{% endif %}
{% endblock %}