1
e11sync/app/signup/templates/signup/index.html

71 lines
2.2 KiB
HTML

{% extends "signup/base.html" %}
{% block "pagename" %}index{% endblock %}
{% block "body" %}
<section class="leftright pure-g">
<article class="pure-u-1 pure-u-md-1-2">
<h1 id="backup">Usage-based pricing</h1>
Tired of paying per e-mail address? e11sync.com offers unlimited domains
and unlimited addresses. Pay only for the used storage and the emails sent
and received (don't worry, limits are more than enough for fair use).
</article>
<article class="pure-u-1 pure-u-md-1-2">
<h1 id="opensource">Open-source</h1>
Entirety of e11sync.com is open source, including the infrastructure to run
it. No proprietary clients, tools or protocols.
</article>
<article class="pure-u-1 pure-u-md-1-2">
<h1 id="privacy">Company mission and funding</h1>
We are a small bootstrapped company. We did not take funding and will not.
</article>
<article class="pure-u-1 pure-u-md-1-2">
<h1 id="durability">Synchronize among other devices</h1>
Your files will be automatically synchronized across your
devices and Synctech. You can also share folders with other devices
that you do not own — colleagues, friends or family.
<p>If you are without an internet connection, but on the same network (e.g.
in an airplane, or on a phone hotspot), files will still be shared
directly. This lets you to collaborate (and move files between your own
devices) under any circumstances.
</article>
</section><!-- .leftright -->
<section id="subscribe-section">
<h1>Synctech is currently in private alpha</h1>
<h2>Enter your email to learn as soon as it's available</h2>
<form class="pure-form pure-form-aligned" action="{% url "index" %}" method="post">
<fieldset>
{% csrf_token %}
{% comment %}
<span class="pure-form-message message-error">{{ .Err }}</span>
<span class="pure-form-message message-success">
You are now subscribed!
</span>
{% endcomment %}
<input type="email" class="subscribe-email" name="email" id="email" placeholder="your@email.com" required />
<button type="submit" class="pure-button pure-button-primary">Inform Me</button>
</fieldset>
</form>
</section>
{% endblock %}{# "body" #}