From 89d6d3c945f6acaa58a36805de2c515ae8f5f211 Mon Sep 17 00:00:00 2001 From: Floke Date: Tue, 27 May 2025 12:29:05 +0000 Subject: [PATCH] =?UTF-8?q?templates/index.html=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/index.html | 60 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 templates/index.html diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 00000000..6580bd0e --- /dev/null +++ b/templates/index.html @@ -0,0 +1,60 @@ + + + + + + YouTube Downloader + + + +
+

YouTube Video Downloader

+ + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for category, message in messages %} +
{{ message }}
+ {% endfor %} + {% endif %} + {% endwith %} + +
+ + +
+ +

Bereits heruntergeladene Videos:

+ {% if files %} + + {% else %} +

Noch keine Videos heruntergeladen.

+ {% endif %} +
+ + \ No newline at end of file