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-10-15 01:19:19 +02:00
< h1 > < span > {{ _("Manage your shared < br > expenses, easily") }}< / span > < / h1 >
< 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" >
2011-10-15 01:19:19 +02:00
< 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 >
2011-08-21 20:54:20 +02:00
< / 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-11-27 23:03:06 +01:00
< div class = "container-fluid" >
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-10-15 01:19:19 +02:00
< h3 > {{ _("Log to an existing project") }}...< / h3 >
2011-08-21 20:54:20 +02:00
{{ forms.authenticate(auth_form, home=True) }}
2011-10-15 01:19:19 +02:00
< button class = "btn" > {{ _("log in") }}< / button >
< 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-10-15 01:19:19 +02:00
< h3 > ...{{ _("or create a new one") }}< / h3 >
2011-08-21 20:54:20 +02:00
{{ forms.create_project(project_form, home=True) }}
2011-10-15 01:19:19 +02:00
< 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 %}