aboutsummaryrefslogtreecommitdiff
path: root/budget/templates/home.html
blob: 21de4f1683cc850dc8ad1d00f6b736fd1e9c2aed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "layout.html" %}

{% block content %}

<h2>Welcome on the budget manager</h2>
<div class="span-12 prepend-2 uniForm" >
    <form action="{{ url_for('authenticate') }}" method="post" style="width: 300px">
        <h3>Log to an existing project...</h3>
        {{ forms.authenticate(auth_form) }}
    </form>
    {% include "recent_projects.html" %}
</div>

<div class="span-10 last uniForm" >
    <form action="{{ url_for('create_project') }}" method="post" style="width: 300px">
        <h3>...or create a new one</h3>
        {{ forms.create_project(project_form) }}</div>
    </form>
</div>

{% endblock %}