2011-07-29 15:44:15 +02:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
2011-08-21 01:50:35 +02:00
|
|
|
{% block sidebar %}
|
|
|
|
{% include "recent_projects.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2011-07-29 15:44:15 +02:00
|
|
|
{% block content %}
|
2011-07-31 23:55:02 +02:00
|
|
|
|
2011-07-29 15:44:15 +02:00
|
|
|
<h2>Welcome on the budget manager</h2>
|
2011-08-21 01:50:35 +02:00
|
|
|
<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>
|
2011-07-31 23:55:02 +02:00
|
|
|
</div>
|
2011-07-29 15:44:15 +02:00
|
|
|
|
|
|
|
{% endblock %}
|