From e0ca887623682d059c6513a1ce36228d4e8c4f21 Mon Sep 17 00:00:00 2001 From: Arne Rief Date: Fri, 27 Mar 2026 11:29:40 +0100 Subject: Upload to web repo --- templates/account.html | 62 ++++++++++++++++++++++++++ templates/apology.html | 12 +++++ templates/bargain.html | 53 ++++++++++++++++++++++ templates/budget.html | 52 ++++++++++++++++++++++ templates/history.html | 51 +++++++++++++++++++++ templates/home.html | 55 +++++++++++++++++++++++ templates/layout.html | 115 ++++++++++++++++++++++++++++++++++++++++++++++++ templates/login.html | 19 ++++++++ templates/register.html | 25 +++++++++++ templates/tracker.html | 74 +++++++++++++++++++++++++++++++ templates/welcome.html | 86 ++++++++++++++++++++++++++++++++++++ 11 files changed, 604 insertions(+) create mode 100644 templates/account.html create mode 100644 templates/apology.html create mode 100644 templates/bargain.html create mode 100644 templates/budget.html create mode 100644 templates/history.html create mode 100644 templates/home.html create mode 100644 templates/layout.html create mode 100644 templates/login.html create mode 100644 templates/register.html create mode 100644 templates/tracker.html create mode 100644 templates/welcome.html (limited to 'templates') diff --git a/templates/account.html b/templates/account.html new file mode 100644 index 0000000..68b1abf --- /dev/null +++ b/templates/account.html @@ -0,0 +1,62 @@ +{% extends "layout.html"%} + +{% block title %} + Account +{% endblock %} + +{% block main %} +
+ +
+
+
+ + + + Username
+
+
{{ name }}
+
+
+ + +
+
+ + + + Budget
+
+
{{ budget | usd }}
+
+
+ + +
+
+ + + Reset Password
+
+
+ + + +
+ +

* Password must be between 6-25 characters long and contain at least one number and one letter

+ + + +

* Your input must match the password above

+ +
+
+
+
+ +
+ +
+
+{% endblock %} diff --git a/templates/apology.html b/templates/apology.html new file mode 100644 index 0000000..f8b22b6 --- /dev/null +++ b/templates/apology.html @@ -0,0 +1,12 @@ +{% extends "layout.html" %} + +{% block title %} + Apology +{% endblock %} + +{% block main %} + + {{ top }} +
+ Return to Main Page +{% endblock %} \ No newline at end of file diff --git a/templates/bargain.html b/templates/bargain.html new file mode 100644 index 0000000..50abde7 --- /dev/null +++ b/templates/bargain.html @@ -0,0 +1,53 @@ +{% extends "layout.html"%} + +{% block title %} + Bargain Finder +{% endblock %} + +{% block main %} + +
+
+
+ +
+
+
+ + + + +
+
+ +
+
+
+ + +
+
    + {% for item in deals %} +
  1. +
    +
    +
    {{ item[0] }}
    +

    + {{ item[1]['price'] | usd }} + Go to Deal +

    +
    +
    +
  2. + {% endfor %} +
+
+ +
+ Increase your savings! +
+{% endblock %} diff --git a/templates/budget.html b/templates/budget.html new file mode 100644 index 0000000..82fbbad --- /dev/null +++ b/templates/budget.html @@ -0,0 +1,52 @@ +{% extends "layout.html"%} + +{% block title %} + Budget +{% endblock %} + +{% block main %} +
+ +
+

Your budget:

+
+ dollar bill +
+ {{ budget | usd }} +
+

+ +
+
+
+
+ + $ + +
+ +
+
+
+
+
+
+
+ + + +{% endblock %} diff --git a/templates/history.html b/templates/history.html new file mode 100644 index 0000000..e461269 --- /dev/null +++ b/templates/history.html @@ -0,0 +1,51 @@ +{% extends "layout.html" %} + +{% block title %} + Spending History +{% endblock %} + +{% block main %} + +
+ + + + + + + + + + + + +
+
+ + +
+ + + + + + + + + + + {% for item in record %} + + + + + + + {% endfor %} + +
ExpenseCategoryAmountDate
{{ item.comment }}{{ item.category }}- {{ item.amount | usd }}{{ item.date }}
+
+ + + +{% endblock %} diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..88cb567 --- /dev/null +++ b/templates/home.html @@ -0,0 +1,55 @@ +{% extends "layout.html"%} + +{% block title %} + Home +{% endblock %} + +{% block main %} + +
+

Hi there, {{ name }} !

+
Your budget:
+
+ dollar bill +
+ {{ cash | usd }} +
+
+
+ + + + +
+
+
+ + +
+
+ +
+ Increase your savings! +
+
+ + + + + + + +{% endblock %} diff --git a/templates/layout.html b/templates/layout.html new file mode 100644 index 0000000..89eb716 --- /dev/null +++ b/templates/layout.html @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + Total Expense: {% block title %}{% endblock %} + + + + + + {% if get_flashed_messages() %} +
+ +
+ {% endif %} + +
+ {% block main %}{% endblock %} +
+ + + + diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..52d453a --- /dev/null +++ b/templates/login.html @@ -0,0 +1,19 @@ +{% extends "layout.html" %} + +{% block title %} + Log In +{% endblock %} + +{% block main %} +
+
+ +
+
+ +
+ +
+
+

New here? Register for a free account!

+{% endblock %} \ No newline at end of file diff --git a/templates/register.html b/templates/register.html new file mode 100644 index 0000000..e7d105e --- /dev/null +++ b/templates/register.html @@ -0,0 +1,25 @@ +{% extends "layout.html" %} + +{% block title %} + Register +{% endblock %} + +{% block main %} +
+
+ +
+
+
+ +

* Password must be between 6-25 characters long and contain at least one number and one letter

+
+
+ +

* Your input must match the password above

+
+ +
+
+

You already have an account? Sign in!

+{% endblock %} diff --git a/templates/tracker.html b/templates/tracker.html new file mode 100644 index 0000000..f0edfb8 --- /dev/null +++ b/templates/tracker.html @@ -0,0 +1,74 @@ +{% extends "layout.html" %} + +{% block title %} + Expense Tracker +{% endblock %} + +{% block main %} + +
+
+
+ + + + + +
+
+ +
+
+ + + + + +
+

* Must be at least $1.00

+
+
+ +
+
+ + + + + +
+
+ +
+ +
+ +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+

+ +
+{% endblock %} diff --git a/templates/welcome.html b/templates/welcome.html new file mode 100644 index 0000000..86f4ac6 --- /dev/null +++ b/templates/welcome.html @@ -0,0 +1,86 @@ +{% extends "layout.html" %} + +{% block title %} + Welcome +{% endblock %} + +{% block main %} +
+

Welcome to Total Expense!


+

Your personal money saving assistant


+
+ +
+ +
+ +
+
+
+
+

Are you tired of relying on financial experts? You do not know how to finance your big dreams but you want to make a change?

+

Then you have come to the right place: here you can easily keep track of your spending habits and monitor your individual budget.

+

And a special highlight to meet your online shopping needs: we will help you to find the best deals!

+

This way you will never run the risk of spending more than you can afford.

+

Instead, you can build financial funds step by step, coming closer to fulfilling your dreams!

+

So what are you waiting for? Sign up today and create your account! It is totally free!

+
+
+ +
+
    +
  • Create a free account!
  • +
  • Set your personal budget!
  • +
  • Track your every expense!
  • +
  • Review your spending history in detail!
  • +
  • Find the cheapest online deals!
  • +
+
+
+
+{% endblock %} -- cgit v1.2.3