zulip/templates/zerver/accounts_home.html

52 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% 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">
$(function () {
autofocus('#email');
if (window.location.pathname.indexOf("customer3.invalid") !== -1) {
$("#customer3-pitch").show();
}
});
</script>
<div class="pitch">
<p class="lead">
<span id="customer3-pitch" style="display: none;">Participate in the real-time EVENT1 discussion using Zulip!</span>
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"/>&nbsp;
<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 wont 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 %}