2023-04-05 11:19:58 +02:00
{% extends "zerver/emails/email_base_default.html" %}
2017-06-10 08:18:41 +02:00
2017-08-16 12:10:55 +02:00
{% block illustration %}
2023-04-26 01:47:00 +02:00
< img src = "{{ email_images_base_url }}/email_logo.png" alt = "" / >
2017-08-16 12:10:55 +02:00
{% endblock %}
2017-06-10 08:18:41 +02:00
{% block content %}
2023-02-03 02:16:43 +01:00
{% if realm_creation %}
{% if is_demo_org %}
< p >
{% trans demo_organizations_help_link="https://zulip.com/help/demo-organizations" %}Congratulations, you have created a new Zulip demo organization. Note
that this organization will be automatically deleted in 30 days. Learn more
about demo organizations < a
href="{{ demo_organizations_help_link }}">here< / a > !
{% endtrans %}
< / p >
{% else %}
< p >
{% trans %}Congratulations, you have created a new Zulip
organization: < b > {{ realm_name }}< / b > .{% endtrans %}
< / p >
{% endif %}
{% else %}
2018-11-14 12:46:56 +01:00
< p > {{ _('Welcome to Zulip!') }}< / p >
2017-06-30 19:15:09 +02:00
< p >
2023-02-03 02:16:43 +01:00
{% trans %}You've joined the Zulip organization < b > {{ realm_name }}< / b > .
{% endtrans %}
2018-05-26 16:35:26 +02:00
< / p >
2023-02-03 02:16:43 +01:00
{% endif %}
2018-05-26 16:35:26 +02:00
< p >
2023-03-23 03:59:33 +01:00
{% trans apps_page_link="https://zulip.com/apps/" %}You will use the following info to log into the Zulip web, < a href = "{{ apps_page_link }}" > mobile and desktop< / a > apps:{% endtrans %}
2021-09-17 23:51:52 +02:00
< ul >
< li > {% trans organization_url=macros.link_tag(realm_uri) %}Organization URL: {{ organization_url }}{% endtrans %}< br / > < / li >
{% if ldap %}
{% if ldap_username %}
2023-02-03 02:16:43 +01:00
< li > {% trans %}Your username: {{ ldap_username }}{% endtrans %}< br / > < / li >
2021-09-17 23:51:52 +02:00
{% else %}
< li > {{ _('Use your LDAP account to log in') }}< br / > < / li >
{% endif %}
2018-11-29 16:32:17 +01:00
{% else %}
2023-02-03 02:16:43 +01:00
< li > {% trans email=macros.email_tag(email) %}Your account email: {{ email }}{% endtrans %}< br / > < / li >
2018-11-29 16:32:17 +01:00
{% endif %}
2021-09-17 23:51:52 +02:00
< / ul >
2023-02-03 02:16:43 +01:00
< a class = "button" href = "{{ realm_uri }}" > {{ _('Go to organization') }}< / a >
2017-06-30 19:15:09 +02:00
< / p >
2018-11-14 12:46:56 +01:00
2017-06-30 19:15:09 +02:00
< p >
2023-02-03 02:16:43 +01:00
{% trans %}If you are new to Zulip, check out our < a href = "{{ getting_user_started_link }}" > Getting started guide< / a > !{% endtrans %}
2018-11-14 12:46:56 +01:00
{% if is_realm_admin %}
2023-02-03 02:16:43 +01:00
{% trans %}We also have a guide for < a href = "{{ getting_organization_started_link }}" > Setting up your organization< / a > .{% endtrans %}
2018-11-14 12:46:56 +01:00
{% endif %}
2017-06-30 19:15:09 +02:00
< / p >
2013-10-07 17:36:38 +02:00
2018-05-23 23:12:50 +02:00
< p >
2023-02-20 18:24:28 +01:00
{% if corporate_enabled %}
{% trans %}Questions? < a href = "{{ support_email }}" > Contact us< / a > — we'd love to help!{% endtrans %}
{% else %}
{{macros.contact_us_self_hosted(support_email)}}
{% endif %}
2017-06-30 19:15:09 +02:00
< / p >
2017-06-10 08:18:41 +02:00
{% endblock %}