mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
Uses blueprint classes rather than floats.
This commit is contained in:
parent
e9b9a06779
commit
fcf33e9fdb
1 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@
|
|||
{% block content %}
|
||||
<h2>Welcome on the budget manager</h2>
|
||||
|
||||
<form action="{{ url_for('authenticate') }}" method="post" accept-charset="utf-8" style="float:left; width: 50%;">
|
||||
<form class="span-12 prepend-2" action="{{ url_for('authenticate') }}" method="post" accept-charset="utf-8">
|
||||
<h3>Log to an existing project...</h3>
|
||||
|
||||
{{ auth_form.hidden_tag() }}
|
||||
|
@ -13,8 +13,8 @@
|
|||
<p>{{ auth_form.submit }}</p>
|
||||
</form>
|
||||
|
||||
<form action="{{ url_for('create_project') }}" method="post" class="container span-24 add-bill" style="float:right; width: 50%;">
|
||||
<h3>...or create a new project</h3>
|
||||
<form class="span-10 last" action="{{ url_for('create_project') }}" method="post" class="container span-24 add-bill">
|
||||
<h3>...or create a new one</h3>
|
||||
|
||||
{{ project_form.hidden_tag() }}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue