mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
f61d1432c7
The only translation so far is french, but more can be added. The browser language is used thanks to the HTTP languages headers. There are still some problems with the translation of some strings, I don't know why this is. See #12
13 lines
427 B
HTML
13 lines
427 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 action="" method="POST" accept-charset="utf-8">
|
|
{{ forms.authenticate(form) }}
|
|
</form>
|
|
{% endblock %}
|