mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
4fcaf7d7ec
This commit adds: * support for projects (creation not yet finished) * an authentication mechanism * bugs (basically all the features are not working anymore)
32 lines
752 B
HTML
32 lines
752 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Account manager</title>
|
|
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='main.css') }}">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container" class="span-24">
|
|
<div id="title">
|
|
<div class="span-18">
|
|
<a href="/"><h1>Account manager ! <span class="small">Manage your shared expenses.</span></h1></a>
|
|
</div>
|
|
<div class="span-6 last" id="topmenu">
|
|
{% block top_menu %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div id="content" class="span-24">
|
|
|
|
{% for message in get_flashed_messages() %}
|
|
<div class=info>{{ message }}</div>
|
|
{% endfor %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
<div id="footer"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|