diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-07-30 01:31:14 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-07-30 01:31:14 +0200 |
| commit | fcf33e9fdb5ee3eb529f57b8aa067251d42d9b51 (patch) | |
| tree | 5cb8ccb88872698f0f1b6336636f44a50d6ec57d /budget/templates | |
| parent | e9b9a06779f3c49b8422c267926f2fd45f7e5df7 (diff) | |
| download | ihatemoney-mirror-fcf33e9fdb5ee3eb529f57b8aa067251d42d9b51.zip ihatemoney-mirror-fcf33e9fdb5ee3eb529f57b8aa067251d42d9b51.tar.gz ihatemoney-mirror-fcf33e9fdb5ee3eb529f57b8aa067251d42d9b51.tar.bz2 | |
Uses blueprint classes rather than floats.
Diffstat (limited to 'budget/templates')
| -rw-r--r-- | budget/templates/home.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/budget/templates/home.html b/budget/templates/home.html index 6fd955a..7d4dc32 100644 --- a/budget/templates/home.html +++ b/budget/templates/home.html @@ -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() }} |
