2016-06-03 01:02:58 +02:00
|
|
|
{% extends "zerver/portico_signup.html" %}
|
|
|
|
{# Home page for not logged-in users. #}
|
|
|
|
|
|
|
|
{# This is where we pitch the app and solicit signups. #}
|
|
|
|
|
|
|
|
{% block portico_content %}
|
2018-07-06 23:31:53 +02:00
|
|
|
<script>
|
2016-06-03 01:02:58 +02:00
|
|
|
$(function () {
|
2017-06-22 22:08:43 +02:00
|
|
|
common.autofocus('#email');
|
2016-06-03 01:02:58 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
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>
|
2016-06-03 01:02:58 +02:00
|
|
|
<form class="form-inline" id="send_confirm" name="email_form"
|
2018-04-05 08:38:46 +02:00
|
|
|
action="{{ current_url() }}" method="post">
|
2016-06-03 01:02:58 +02:00
|
|
|
{{ csrf_input }}
|
2017-04-20 21:02:56 +02:00
|
|
|
<div class="input-box horizontal">
|
|
|
|
<div class="inline-block relative">
|
2017-07-07 00:07:31 +02:00
|
|
|
<input type="text" class="email required" placeholder="{{ _("Enter your email address") }}"
|
2018-04-03 10:07:23 +02:00
|
|
|
id="email" name="email" required />
|
2018-07-06 23:28:41 +02:00
|
|
|
<label for="email">{{ _('Email') }}</label>
|
2017-04-20 21:02:56 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<button type="submit" class="new-organization-button register-button">{{ _("Create organization") }}</button>
|
|
|
|
</div>
|
2016-06-03 01:02:58 +02:00
|
|
|
</form>
|
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">
|
2018-12-06 02:06:58 +01:00
|
|
|
Or import
|
|
|
|
from <a href="/help/import-from-slack">Slack</a>, <a href="/help/import-from-hipchat">HipChat</a> or
|
2018-07-25 01:00:56 +02:00
|
|
|
<a href="/help/import-from-gitter">Gitter</a>.
|
|
|
|
</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 %}
|