mirror of https://github.com/zulip/zulip.git
43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
{% 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 %}
|
||
<script type="text/javascript">
|
||
autofocus('#email');
|
||
</script>
|
||
|
||
<div class="pitch">
|
||
<p class="lead">Let's get started…</p>
|
||
<form class="form-inline" id="send_confirm" name="email_form"
|
||
action="{{ current_url }}" method="post">
|
||
{% csrf_token %}
|
||
<input type="text" class="email required" placeholder="Enter your work email address"
|
||
id="email" name="email"/>
|
||
<input type="submit" class="btn btn-primary btn-large" value="Sign up"/>
|
||
</form>
|
||
<div id="errors"></div>
|
||
{% if form.email.errors %}
|
||
{% for error in form.email.errors %}
|
||
<div class="alert alert-error">{{ error }}</div>
|
||
{% endfor %}
|
||
{% endif %}
|
||
|
||
|
||
<div class="alert alert-pitch" id="company-email">Please use your
|
||
company email address to sign up. Otherwise, we won’t be able to
|
||
connect you with your coworkers.</div>
|
||
<div class="pitch">
|
||
<a href="/accounts/login/openid/" class="zocial google">Sign up with Google</a>
|
||
</div>
|
||
</div>
|
||
|
||
<script type="text/javascript">
|
||
if (window.location.hash.substring(0, 1) === "#") {
|
||
document.email_form.action += window.location.hash;
|
||
}
|
||
</script>
|
||
{% endblock %}
|