mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
For the last form (with Full Name and ToS consent field), this pretty shamelessly re-uses and directly renders the corporate/remote_realm_billing_finalize_login_confirmation.html template. That's probably good in terms of re-use, but calls for a clean-up commit that will generalize the name of this template and the classes/ids in the HTML.
23 lines
732 B
HTML
23 lines
732 B
HTML
{% extends "zerver/emails/email_base_default.html" %}
|
|
|
|
{% block illustration %}
|
|
<img src="{{ email_images_base_url }}/registration_confirmation.png" alt=""/>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>
|
|
{{ _("You have initiated login to the Zulip server billing management system for the following server:") }}
|
|
<ul>
|
|
<li>{% trans %}Hostname: {{ remote_server_hostname }}{% endtrans %}</li>
|
|
<li>{% trans %}zulip_org_id: {{ remote_server_uuid }}{% endtrans %}</li>
|
|
</ul>
|
|
</p>
|
|
<p>
|
|
{{ _("Click the button below to complete the login process.") }}
|
|
<a class="button" href="{{ confirmation_url }}">{{ _("Confirm login") }}</a>
|
|
</p>
|
|
<p>
|
|
{{macros.contact_us_zulip_cloud(support_email)}}
|
|
</p>
|
|
{% endblock %}
|