blob: 0ad8815d61cc4a48ec992b8a29a8bbd1f3f4d0d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% 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 %}
|