aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney/templates/authenticate.html
blob: 4e8eb779ff98a5298d58a12272b482196f9b57e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "layout.html" %}
{% block content %}
<h2>Authentication</h2>

{% if create_project %}
<p class="info">{{ _("The project you are trying to access do not exist, do you want to") }}
<a href="{{ url_for(".create_project", project_id=create_project) }}">
    {{ _("create it") }}</a>{{ _("?") }}
</p>
{% endif %}
<form class="form-horizontal" method="POST" accept-charset="utf-8">
    {{ forms.authenticate(form) }}
</form>
{% endblock %}