2017-09-26 01:41:15 +02:00
{% extends "zerver/emails/compiled/email_base_default.html" %}
2017-06-10 08:18:41 +02:00
2017-08-16 12:10:55 +02:00
{% block illustration %}
2020-01-24 08:30:26 +01:00
< img src = "{{ email_images_base_uri }}/email_logo.png" alt = "" / >
2017-08-16 12:10:55 +02:00
{% endblock %}
2017-06-10 08:18:41 +02:00
{% block content %}
2018-11-14 12:46:56 +01:00
< p > {{ _('Welcome to Zulip!') }}< / p >
2013-10-07 17:36:38 +02:00
2017-06-30 19:15:09 +02:00
< p >
2018-11-14 12:46:56 +01:00
{% if realm_creation %}
2019-02-08 10:53:01 +01:00
{% trans %}You've created the new Zulip organization < b > {{ realm_name }}< / b > .{% endtrans %}
2018-11-14 12:46:56 +01:00
{% else %}
2019-02-08 10:53:01 +01:00
{% trans %}You've joined the Zulip organization < b > {{ realm_name }}< / b > .{% endtrans %}
2018-11-14 12:46:56 +01:00
{% endif %}
2018-05-26 16:35:26 +02:00
< / p >
< p >
2018-11-14 12:46:56 +01:00
{{ _('Your account details:') }}
2020-04-19 12:52:45 +02:00
< li > {{ _('Organization URL:') }} {{ realm_uri }}< br > < / li >
2018-11-29 16:32:17 +01:00
{% if ldap %}
{% if ldap_username %}
2020-04-19 12:52:45 +02:00
< li > {{ _('Username:') }} {{ ldap_username }}< br > < / li >
2018-11-29 16:32:17 +01:00
{% else %}
2020-04-19 12:52:45 +02:00
< li > {{ _('Use your LDAP account to login') }}< br > < / li >
2018-11-29 16:32:17 +01:00
{% endif %}
2018-11-14 12:46:56 +01:00
{% else %}
2020-04-19 12:52:45 +02:00
< li > {{ _('Email:') }} {{ email }}< br > < / li >
2018-11-14 12:46:56 +01:00
{% endif %}
2020-06-08 23:04:39 +02:00
{% trans %}(you'll need these to sign in to the < a href = "https://zulip.com/apps" > mobile and desktop< / a > apps){% endtrans %}
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 >
2018-11-14 12:46:56 +01:00
{% if is_realm_admin %}
2019-02-08 10:53:01 +01:00
{% trans %}Check out our < a href = "{{ getting_started_link }}" > guide for admins< / a > , become a Zulip pro with a few < a href = "{{ keyboard_shortcuts_link }}" > keyboard shortcuts< / a > , or < a href = "{{ realm_uri }}" > dive right in< / a > !{% endtrans %}
2018-11-14 12:46:56 +01:00
{% else %}
2019-02-08 10:53:01 +01:00
{% trans %}< a href = "{{ getting_started_link }}" > Learn more< / a > about Zulip, become a pro with a few < a href = "{{ keyboard_shortcuts_link }}" > keyboard shortcuts< / a > , or < a href = "{{ realm_uri }}" > dive right in< / 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 >
2020-04-19 12:52:45 +02:00
{{ _("Cheers,") }}< br >
2018-05-23 23:12:50 +02:00
{{ _("Team Zulip") }}
< / p >
2013-10-07 17:36:38 +02:00
2017-06-30 19:15:09 +02:00
< p >
2019-02-08 10:53:01 +01:00
{% trans %}PS: Follow us on < a href = "https://twitter.com/zulip" > Twitter< / a > , star us on < a href = "https://github.com/zulip/zulip" > GitHub< / a > , or chat with us live on the < a href = "https://chat.zulip.org" > Zulip community server< / a > !{% endtrans %}
2017-06-30 19:15:09 +02:00
< / p >
2017-06-10 08:18:41 +02:00
{% endblock %}