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 %}
|
|
|
|
<p class="info">The project you are trying to access do not exist, do you want
|
2011-09-09 21:21:37 +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 %}
|
2011-07-23 15:54:23 +02:00
|
|
|
<form action="" 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 %}
|