mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-02 11:12:23 +02:00

* Use token based auth in invitation e-mails Invitation e-mails no longer contain the clear text project password * Skip invite page after project creation - Replace ``The project identifier is demo, remember it!`` by ``Invite other people to join this project!`` (linking to the invite page) - Encourage users to share the project password via other communication means in the reminder email
14 lines
445 B
HTML
14 lines
445 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 class="form-horizontal" method="POST" accept-charset="utf-8">
|
|
{{ forms.authenticate(form) }}
|
|
</form>
|
|
{% endblock %}
|