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 %}
+
+ {% for file in files %}
+ -
+ {{ file }}
+
+ {% endfor %}
+
+ {% else %}
+
Noch keine Videos heruntergeladen.
+ {% endif %}
+
+
+
\ No newline at end of file