Files
zulip/templates/zephyr/accounts_home.html
Waseem Daher 29d94b60b6 Add an "I agree to the terms of use" checkbox inside signup workflow.
(imported from commit 6d3320e71e189f4577da464fade9c8f7f5838f78)
2012-10-25 16:05:28 -04:00

39 lines
1.6 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>
</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 %}