Welcome on your budget manager
-You're sharing a house? Going on holidays with friends? Simply sharing money with others? We can help!
-diff --git a/budget/static/main.css b/budget/static/main.css index 5d8b268..8445aa5 100644 --- a/budget/static/main.css +++ b/budget/static/main.css @@ -54,6 +54,25 @@ div.topbar ul.secondary-nav { padding-right: 75px; } display: inline; } +#header .additional-content{ + font-family: 'Comfortaa', arial, serif; + float: right; + position: relative; + top: -150px; + margin-right: 200px; + margin-bottom: -100px; + +} + +.home form button{ + float: right; + margin-right: 100px; +} +.home .create h3{ + text-align: right; + margin-right: 100px; +} + .footer{ position: absolute; bottom: 0px; diff --git a/budget/templates/forms.html b/budget/templates/forms.html index 4e62f58..690f59d 100644 --- a/budget/templates/forms.html +++ b/budget/templates/forms.html @@ -26,17 +26,19 @@ {% endmacro %} -{% macro authenticate(form) %} +{% macro authenticate(form, home=False) %} {% include "display_errors.html" %} {{ form.hidden_tag() }} {{ input(form.id) }} {{ input(form.password) }} + {% if not home %} {{ submit(form.submit) }} + {% endif %} {% endmacro %} -{% macro create_project(form) %} +{% macro create_project(form, home=False) %} {% include "display_errors.html" %} {{ form.hidden_tag() }} @@ -44,7 +46,9 @@ {{ input(form.id) }} {{ input(form.password) }} {{ input(form.contact_email) }} + {% if not home %} {{ submit(form.submit) }} + {% endif %} {% endmacro %} @@ -70,10 +74,3 @@ {% endmacro %} - -{% macro authenticate(form) %} - {{ form.hidden_tag() }} - {{ input(form.id) }} - {{ input(form.password) }} - {{ submit(form.submit) }} -{% endmacro %} diff --git a/budget/templates/home.html b/budget/templates/home.html index eb795ba..1b77cbd 100644 --- a/budget/templates/home.html +++ b/budget/templates/home.html @@ -6,29 +6,33 @@ {% block header %}
You're sharing a house?
Going on holidays with friends?
Simply sharing money with others?
We can help!
You're sharing a house? Going on holidays with friends? Simply sharing money with others? We can help!
-