diff --git a/.gitignore b/.gitignore
index 00a295a..cc9c584 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-/webinterface/uploads/*.webm
\ No newline at end of file
+*.webm
+*.mp3
\ No newline at end of file
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..2da69a1
--- /dev/null
+++ b/index.php
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+ Upload your files
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+';
+
+if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
+ echo "File is valid, and was successfully uploaded.\n";
+} else {
+
+ echo "Possible file upload attack!\n";
+}
+
+
+
+echo 'Here is some more debugging info:';
+
+print_r($_FILES);
+
+
+
+print "";
+
+
+
+?>
\ No newline at end of file
diff --git a/webinterface/index.php b/webinterface/index.php
index ce7afa1..a4ce345 100644
--- a/webinterface/index.php
+++ b/webinterface/index.php
@@ -11,31 +11,78 @@
-
+
+
+
+
+
-