mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
ea136b506b
Also factorize the code to display errors in forms.
25 lines
664 B
HTML
25 lines
664 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">
|
|
<a href="/"><h1>Account manager ! <span class="small">Manage your shared expenses.</span></h1></a>
|
|
<div class="fright" id="topmenu">
|
|
{% block top_menu %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
{% for message in get_flashed_messages() %}
|
|
<div class=info>{{ message }}</div>
|
|
{% endfor %}
|
|
{% block content %}
|
|
{% endblock %}
|
|
<div id="footer"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|