2016-06-03 01:02:58 +02:00
|
|
|
{% extends "zerver/portico_signup.html" %}
|
|
|
|
{# Home page for not logged-in users. #}
|
|
|
|
|
2022-09-06 12:04:03 +02:00
|
|
|
{% block title %}
|
|
|
|
<title>{{ _("Create a new organization") }} | Zulip</title>
|
|
|
|
{% endblock %}
|
|
|
|
|
2016-06-03 01:02:58 +02:00
|
|
|
{# This is where we pitch the app and solicit signups. #}
|
|
|
|
|
|
|
|
{% block portico_content %}
|
2017-08-24 18:56:01 +02:00
|
|
|
<div class="app register-page">
|
|
|
|
<div class="app-main register-page-container new-style flex full-page center">
|
2016-06-03 01:02:58 +02:00
|
|
|
|
2017-08-24 18:56:01 +02:00
|
|
|
<div class="register-form left">
|
2017-04-20 21:02:56 +02:00
|
|
|
<div class="lead">
|
2017-04-27 20:12:09 +02:00
|
|
|
<h1 class="get-started">{{ _("Create a new Zulip organization") }}</h1>
|
2017-04-20 21:02:56 +02:00
|
|
|
</div>
|
2019-08-03 16:00:48 +02:00
|
|
|
<div class="white-box">
|
2023-03-14 18:58:38 +01:00
|
|
|
<form class="form-inline" id="create_realm" name="email_form"
|
2019-08-03 16:00:48 +02:00
|
|
|
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") }}"
|
2019-09-13 20:56:51 +02:00
|
|
|
id="email" name="email" autofocus required />
|
2019-08-03 16:00:48 +02:00
|
|
|
<label for="email">{{ _('Email') }}</label>
|
|
|
|
</div>
|
2017-04-20 21:02:56 +02:00
|
|
|
|
2019-08-03 16:00:48 +02:00
|
|
|
<button type="submit" class="new-organization-button register-button">{{ _("Create organization") }}</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2018-08-11 15:22:26 +02:00
|
|
|
<div class="alert alert-error email-frontend-error"></div>
|
2016-06-03 01:02:58 +02:00
|
|
|
{% if form.email.errors %}
|
|
|
|
{% for error in form.email.errors %}
|
2017-02-24 16:42:13 +01:00
|
|
|
<div class="alert alert-error">{{ error }}</div>
|
2016-06-03 01:02:58 +02:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2018-07-25 01:00:56 +02:00
|
|
|
<div class="bottom-text">
|
2023-03-21 17:57:51 +01:00
|
|
|
{% trans %}
|
2018-12-06 02:06:58 +01:00
|
|
|
Or import
|
2021-07-24 23:39:05 +02:00
|
|
|
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>.
|
2023-03-21 17:57:51 +01:00
|
|
|
{% endtrans %}
|
2018-07-25 01:00:56 +02:00
|
|
|
</div>
|
2016-06-03 01:02:58 +02:00
|
|
|
</div>
|
2017-02-24 16:42:13 +01:00
|
|
|
</div>
|
2016-06-03 01:02:58 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|