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/authenticate.html

15 lines
383 B
HTML
Raw Normal View History

{% extends "layout.html" %}
{% block content %}
<h2>Login to "{{ project.name }}"</h2>
{% for errors in form.errors.values() %}
<p class=error>{{ ", ".join(errors) }}</p>
{% endfor %}
<form action="" method="POST" accept-charset="utf-8">
{{ form.hidden_tag() }}
Password: <input type="password" name="password" value="">
<p>{{ form.submit }}</p>
</form>
{% endblock %}