Files
zulip/templates/zephyr/accounts_home.html
Keegan McAllister 7d44e1c56f Don't include signup.js in login.html
(imported from commit fe36afb1703e706012f1c690d15481a0da204eb3)
2012-10-16 01:33:15 -04:00

36 lines
1.7 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 "zephyr/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>Youre not using your Zip drive anymore.</p>
<p>Youre not calling your parents from the pay phone at school, asking
to be picked up because you stayed late to go to the computer club
meeting.</p>
<p>You havent watched Saved by the Bell in a while.</p>
<p>So why are you still using IRC?</p>
<br/>
<p>Discover a better alternative for group communication at work.</p>
</div>
<div class="signup">
<p class="lead">Get started now, for free</p>
<form class="form-inline" id="email_signup" action="/accounts/home/" 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"/>
<span class="or">- or -</span>
<button type="submit" class="btn">Connect with Google Apps</button>
<p><small>By continuing, you are indicating that you have read and agree to our <a href="/tos">Terms of Use</a>.</small></p>
</form>
<div id="errors"></div>
<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>
{% endblock %}