1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00
ihatemoney_ynh/budget/templates/home.html

22 lines
620 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block content %}
2011-07-31 23:55:02 +02:00
<h2>Welcome on the budget manager</h2>
2011-07-31 23:55:02 +02:00
<div class="span-12 prepend-2 uniForm" >
<form action="{{ url_for('authenticate') }}" method="post" style="width: 300px">
<h3>Log to an existing project...</h3>
2011-07-31 23:55:02 +02:00
{{ forms.authenticate(auth_form) }}
</form>
2011-07-31 23:55:02 +02:00
{% include "recent_projects.html" %}
</div>
2011-07-31 23:55:02 +02:00
<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 %}