mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
Adds HTML title elements to templates that extend either `base.html`, `portico.html` or `portico_signup.html`, and that are not website portico landing pages that will use the `PAGE_TITLE` variable to set the HTML title element (see following commit in series). Also, updates some templates for missing translation tags. As a general rule, we want the title element (and page content) translated. Exceptions that are updated in this commit are templates used in the development environment, analytics templates that are used by staff and templates related to Zephyr.
48 lines
2.0 KiB
HTML
48 lines
2.0 KiB
HTML
{% extends "zerver/portico_signup.html" %}
|
|
{# Home page for not logged-in users. #}
|
|
|
|
{% block title %}
|
|
<title>{{ _("Create a new organization") }} | Zulip</title>
|
|
{% endblock %}
|
|
|
|
{# This is where we pitch the app and solicit signups. #}
|
|
|
|
{% block portico_content %}
|
|
<div class="app register-page">
|
|
<div class="app-main register-page-container new-style flex full-page center">
|
|
|
|
<div class="register-form left">
|
|
<div class="lead">
|
|
<h1 class="get-started">{{ _("Create a new Zulip organization") }}</h1>
|
|
</div>
|
|
<div class="white-box">
|
|
<form class="form-inline" id="send_confirm" name="email_form"
|
|
action="{{ current_url() }}" method="post">
|
|
{{ csrf_input }}
|
|
<div class="input-box horizontal">
|
|
<div class="inline-block relative">
|
|
<input type="text" class="email required" placeholder="{{ _("Enter your email address") }}"
|
|
id="email" name="email" autofocus required />
|
|
<label for="email">{{ _('Email') }}</label>
|
|
</div>
|
|
|
|
<button type="submit" class="new-organization-button register-button">{{ _("Create organization") }}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="alert alert-error email-frontend-error"></div>
|
|
{% if form.email.errors %}
|
|
{% for error in form.email.errors %}
|
|
<div class="alert alert-error">{{ error }}</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
<div class="bottom-text">
|
|
Or import
|
|
from <a href="/help/import-from-slack">Slack</a>, <a href="/help/import-from-mattermost">Mattermost</a>,
|
|
<a href="/help/import-from-gitter">Gitter</a>, or <a href="/help/import-from-rocketchat">Rocket.Chat</a>.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|