mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-01 02:32:23 +02:00
This commit adds: * support for projects (creation not yet finished) * an authentication mechanism * bugs (basically all the features are not working anymore)
14 lines
383 B
HTML
14 lines
383 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<h2>Login to "{{ project.name }}"</h2>
|
|
|
|
{% for errors in form.errors.values() %}
|
|
<p class=error>{{ ", ".join(errors) }}</p>
|
|
{% endfor %}
|
|
|
|
<form action="" method="POST" accept-charset="utf-8">
|
|
{{ form.hidden_tag() }}
|
|
Password: <input type="password" name="password" value="">
|
|
<p>{{ form.submit }}</p>
|
|
</form>
|
|
{% endblock %}
|