diff --git a/app/templates/index.html b/app/templates/index.html index 70b3223..cb99e5d 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -57,6 +57,10 @@ gap: 15px; } + .past-concerts-title { + margin: 28px 0 0; + } + .concert-card { display: block; padding: 22px; @@ -150,11 +154,11 @@ - {% if concerts %} + {% if upcoming_concerts or past_concerts %}
- {% for concert in concerts %} + {% for concert in upcoming_concerts %} + Vergangene Konzerte + + + {% for concert in past_concerts %} + + + +
+ 🎸 {{ concert.artist }} +
+ +
+ +
+ 📅 {{ concert.date }} + um {{ concert.time }} Uhr +
+ +
+ 📍 {{ concert.venue }} +
+ +
+ +
+ + {% endfor %} + + {% endif %} +
{% else %} diff --git a/app/templates/login.html b/app/templates/login.html new file mode 100644 index 0000000..0b8e3f7 --- /dev/null +++ b/app/templates/login.html @@ -0,0 +1,40 @@ + + + + + + Anmelden · Pingu Concerts + + + +
+
+ +
+
+
+
+

Anmelden

+

Melde dich an, um Konzerte hinzuzufügen oder zu bearbeiten.

+
+
+
+ + {% if error %}

{{ error }}

{% endif %} +

+ +

+

+ +

+ + Abbrechen +
+
+
+ +