aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/home.html
blob: b96f5793d29f15da91fe0260dcccf3b6f5b070a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{% extends "layout.html" %}


{% block sidebar_wrapper %}{% endblock %}

{% block header %}
<div id="header">
    <div class="slide">
        <h1><span>Manage your shared <br>expenses easily</span></h1>
        <a href="about.html" class="about_link">Try out the demo</a>
    </div>
</div>
{% endblock %}

{% block container %}
<div class="container-fluid">
    <div class="content">

    <h2>Welcome on your budget manager</h2>
    <p>You're sharing a house? Going on holidays with friends? Simply sharing money with others? We can help!</p>
    <div class="row">
        <div class="span8 columns">
            <form action="{{ url_for('authenticate') }}" method="post">
                <h3>Log to an existing project...</h3>
                {{ forms.authenticate(auth_form) }}
            </form>
        </div>
        <div class="span8 columns">
            <form action="{{ url_for('create_project') }}" method="post">
                <h3>...or create a new one</h3>
                {{ forms.create_project(project_form) }}</div>
            </form>
        </div>
    </div>
    </div>
</div>
{% endblock %}