2011-07-29 15:44:15 +02:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
2011-08-21 03:16:54 +02:00
|
|
|
|
|
|
|
{% block sidebar_wrapper %}{% endblock %}
|
|
|
|
|
|
|
|
{% block header %}
|
|
|
|
<div id="header">
|
|
|
|
<div class="slide">
|
2011-08-21 20:54:20 +02:00
|
|
|
<h1><span>Manage your shared <br>expenses, easily</span></h1>
|
2011-09-09 21:21:37 +02:00
|
|
|
<a href="{{ url_for(".demo") }}" class="about_link">Try out the demo</a>
|
2011-08-21 03:16:54 +02:00
|
|
|
</div>
|
2011-08-21 20:54:20 +02:00
|
|
|
<div class="additional-content">
|
|
|
|
<p>You're sharing a house?<br /> Going on holidays with friends?<br /> Simply sharing money with others? <br /><strong>We can help!</strong></p>
|
|
|
|
</div>
|
|
|
|
|
2011-08-21 03:16:54 +02:00
|
|
|
</div>
|
2011-08-21 01:50:35 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
2011-08-21 03:16:54 +02:00
|
|
|
{% block container %}
|
2011-08-21 14:57:05 +02:00
|
|
|
<div class="container-fluid" style="margin-top: 20px">
|
2011-08-21 20:54:20 +02:00
|
|
|
<div class="content home">
|
2011-07-31 23:55:02 +02:00
|
|
|
|
2011-08-21 20:54:20 +02:00
|
|
|
<div class="row">
|
2011-08-21 03:16:54 +02:00
|
|
|
<div class="span8 columns">
|
2011-09-09 21:21:37 +02:00
|
|
|
<form action="{{ url_for(".authenticate") }}" method="post">
|
2011-08-21 03:16:54 +02:00
|
|
|
<h3>Log to an existing project...</h3>
|
2011-08-21 20:54:20 +02:00
|
|
|
{{ forms.authenticate(auth_form, home=True) }}
|
|
|
|
<button class="btn">log in</button>
|
2011-10-08 15:52:12 +02:00
|
|
|
<a class="password-reminder" href="{{ url_for(".remind_password") }}">can't remember your password?</a>
|
2011-08-21 03:16:54 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="span8 columns">
|
2011-09-09 21:21:37 +02:00
|
|
|
<form class="create" action="{{ url_for(".create_project") }}" method="post">
|
2011-08-21 03:16:54 +02:00
|
|
|
<h3>...or create a new one</h3>
|
2011-08-21 20:54:20 +02:00
|
|
|
{{ forms.create_project(project_form, home=True) }}
|
|
|
|
<button class="btn">let's get started</button>
|
2011-08-21 03:16:54 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2011-08-21 01:50:35 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2011-07-31 23:55:02 +02:00
|
|
|
</div>
|
2011-07-29 15:44:15 +02:00
|
|
|
{% endblock %}
|