2011-07-23 15:54:23 +02:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
2011-07-29 15:44:15 +02:00
|
|
|
<h2>Authentication</h2>
|
2011-07-23 15:54:23 +02:00
|
|
|
|
2011-08-09 17:29:44 +02:00
|
|
|
{% if create_project %}
|
2015-08-20 12:02:04 +02:00
|
|
|
<p class="info">{{ _("The project you are trying to access do not exist, do you want
|
2011-10-15 01:19:19 +02:00
|
|
|
to") }} <a href="{{ url_for(".create_project", project_id=create_project) }}">{{ _("create it") }}</a>{{ _("?") }}
|
2011-08-09 17:29:44 +02:00
|
|
|
</p>
|
|
|
|
{% endif %}
|
2012-04-05 15:40:09 +02:00
|
|
|
<form class="form-horizontal" method="POST" accept-charset="utf-8">
|
2011-08-21 01:42:10 +02:00
|
|
|
{{ forms.authenticate(form) }}
|
2011-07-23 15:54:23 +02:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|