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

38 lines
1.1 KiB
HTML
Raw Normal View History

{% 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>
2011-08-21 01:50:35 +02:00
{% endblock %}
{% block container %}
<div class="container-fluid">
<div class="content">
2011-07-31 23:55:02 +02:00
<h2>Welcome on your budget manager</h2>
<p>You're sharing a house? are going on holidays with friends? are 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>
2011-08-21 01:50:35 +02:00
</div>
</div>
2011-07-31 23:55:02 +02:00
</div>
{% endblock %}