mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
ef353d643c
This allows to isolate some behavior in the context of the web application so the API and the web application can behave in different ways.
17 lines
492 B
HTML
17 lines
492 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<h2>Authentication</h2>
|
|
|
|
{% for errors in form.errors.values() %}
|
|
<p class=error>{{ ", ".join(errors) }}</p>
|
|
{% endfor %}
|
|
|
|
{% 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 %}
|