ihatemoney/ihatemoney/templates/authenticate.html
Alexis Metaireau 35a74100cb
Rename all strings to "participants", clean old and small weird stuff (#871)
* Rename all strings to "participants".
* Update the tests with the new strings
* Update tests
2021-11-01 18:25:57 +01:00

14 lines
456 B
HTML

{% 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 %}