Back to Zulip

Account Registered

templates/zerver/emails/account_registered.html

12.01.6 KB
Original Source

{% extends "zerver/emails/email_base_default.html" %} {% block illustration %} {% endblock %} {% block content %} {% if realm_creation %}

{% trans %}Congratulations, you have created a new Zulip organization: {{ realm_name }}.{% endtrans %}

{% else %}

{{ _('Welcome to Zulip!') }}

{% trans %}You've joined the Zulip organization {{ realm_name }}. {% endtrans %}

{% endif %}

{% trans apps_page_link="https://zulip.com/apps/" %}You will use the following info to log into the Zulip web, mobile and desktop apps:{% endtrans %}

  • {% trans organization_url=macros.link_tag(realm_url) %}Organization URL: {{ organization_url }}{% endtrans %}
    {% if ldap %} {% if ldap_username %} - {% trans %}Your username: {{ ldap_username }}{% endtrans %}
    {% else %} - {{ _('Use your LDAP account to log in') }}
    {% endif %} {% else %} - {% trans email=macros.email_tag(email) %}Your account email: {{ email }}{% endtrans %}
    {% endif %}

{{ _('Go to organization') }}

{% trans %}If you are new to Zulip, check out our getting started guide!{% endtrans %} {% if is_realm_admin %} {% trans %}We also have a guide for moving your organization to Zulip.{% endtrans %} {% endif %}

{% if corporate_enabled %} {% trans %}Questions? Contact us — we'd love to help!{% endtrans %} {% else %} {{macros.contact_us_self_hosted(support_email)}} {% endif %}

{% endblock %}