1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00
ihatemoney_ynh/budget/templates/create_project.html
Alexis Metaireau 4fcaf7d7ec Kick-start multiple projects support.
This commit adds:
* support for projects (creation not yet finished)
* an authentication mechanism
* bugs (basically all the features are not working anymore)
2011-07-23 15:54:23 +02:00

21 lines
671 B
HTML

{% extends "layout.html" %}
{% block content %}
<h2>Create a new project</h2>
{% if form.errors %}
<p class=error><strong>Your form contains errors.</strong></p>
<ul>{% for error in form.errors %}<li>{{ error }}</li>{% endfor %}</ul>
{% endif %}
<form method="POST" class="container span-24 add-bill">
{{ form.hidden_tag() }}
<p>{{ form.name.label }}<br /> {{ form.name }}</p>
<p>{{ form.id.label }}<br /> {{ form.id }}</p>
<p>{{ form.password.label }}<br /> {{ form.password }}</p>
<p>{{ form.contact_email.label }}<br /> {{ form.contact_email }}</p>
<p>{{ form.submit }}</p>
</form>
{% endblock %}