2012-10-16 07:24:29 +02:00
|
|
|
|
{% extends "zephyr/portico_signup.html" %}
|
2012-10-16 06:03:29 +02:00
|
|
|
|
|
|
|
|
|
{# Home page for not logged-in users. #}
|
|
|
|
|
|
|
|
|
|
{# This is where we pitch the app and solicit signups. #}
|
|
|
|
|
|
2012-10-16 05:49:53 +02:00
|
|
|
|
{% block portico_content %}
|
2012-09-25 22:58:59 +02:00
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
autofocus('#email');
|
|
|
|
|
</script>
|
2012-08-28 21:56:46 +02:00
|
|
|
|
|
2012-09-25 22:58:59 +02:00
|
|
|
|
<div class="pitch">
|
|
|
|
|
<p>You’re not using your Zip drive anymore.</p>
|
|
|
|
|
<p>You’re 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 haven’t 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>
|
2012-08-29 00:55:10 +02:00
|
|
|
|
</div>
|
2012-09-25 22:58:59 +02:00
|
|
|
|
<div class="signup">
|
|
|
|
|
<p class="lead">Get started now, for free</p>
|
2012-09-28 22:47:05 +02:00
|
|
|
|
<form class="form-inline" id="email_signup" action="/accounts/home/" method="post">
|
2012-09-25 22:58:59 +02:00
|
|
|
|
{% csrf_token %}
|
2012-10-25 06:09:28 +02:00
|
|
|
|
<input type="text" class="email required" placeholder="Enter your work email address"
|
|
|
|
|
id="email" name="email"/>
|
2012-09-25 22:58:59 +02:00
|
|
|
|
<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>
|
2012-10-25 06:09:28 +02:00
|
|
|
|
|
|
|
|
|
<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>
|
2012-08-29 00:55:10 +02:00
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|