{% extends "base.html" %} {% block title %}Send a Message{% endblock %} {% block content %}

Submit a message to {{ display_name_or_username }}

{% if user.is_verified %}

⭐️ Verified Account

{% endif %} {% if user.is_admin %}

⚙️ Admin

{% endif %}
{% if current_user_id == user.id or (secondary_username and current_user_id == secondary_username.primary_user_id) %}

Only visible to you: This is your public tip line. Share the address on your social media profiles, your website, or email signature. Ensuring that someone submitting a message trusts this form belongs to you is critical!

{% if user.pgp_key %}

🔐 Your message will be encrypted and only readable by you.

{% else %}

⚠️ Your messages will NOT be encrypted. If you expect messages to contain sensitive information, please add a public PGP key.

{% endif %} {% else %} {% if user.pgp_key %}

🔐 Your message will be encrypted and only readable by {{ display_name_or_username }}.

{% else %}

⚠️ Your message will NOT be encrypted. If this message is sensitive, ask {{ display_name_or_username }} to add a public PGP key. Here's how they can do it.

{% endif %} {% endif %}
{{ form.hidden_tag() }}
{% endblock %} {% block scripts %} {% endblock %}