diff --git a/signup/Logo.png b/signup/Logo.png
deleted file mode 100644
index 2b44bc4..0000000
Binary files a/signup/Logo.png and /dev/null differ
diff --git a/signup/add.php b/signup/add.php
deleted file mode 100644
index b468e5c..0000000
--- a/signup/add.php
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
Neuen Termin hinzufügen
-
-
- setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
-
- // SQL query to insert a new dinner option
- $sql = "INSERT INTO meals (title, link, event_date, registration_closes) VALUES (:title, :melly, :date, :deadline)";
- $stmt = $pdo->prepare($sql);
-
- // Bind parameters
- $stmt->bindParam(':title', $title);
- $stmt->bindParam(':melly', $melly);
- $stmt->bindParam(':date', $date);
- $stmt->bindParam(':deadline', $deadline);
-
- // Execute the statement
- $stmt->execute();
-
- echo '
Dinner option added successfully!
';
-
- } catch (PDOException $e) {
- // Handle connection or query error
- echo "Error: " . $e->getMessage();
- }
- }
- }
- ?>
-
-
-
diff --git a/signup/create_db.sql b/signup/create_db.sql
deleted file mode 100644
index 84d7ad1..0000000
--- a/signup/create_db.sql
+++ /dev/null
@@ -1,13 +0,0 @@
-CREATE TABLE meals (
- id SERIAL PRIMARY KEY,
- title TEXT NOT NULL,
- link TEXT NOT NULL,
- event_date DATE NOT NULL,
- registration_closes TIMESTAMP NOT NULL
-);
-
-
-INSERT INTO meals (title, link, event_date, registration_closes)
-VALUES ('Kidneybohnen Burger mit veganem Coleslaw','https://melly.de/plan/2ZSNYWR37VB8','2025-03-05', '2025-03-02T17:30:30'),
- ('Gemüselasagne mit Salat','hhttps://melly.de/plan/M4XU9XMVM2HP','2025-02-28', '2025-02-23T17:30:30'),
-RETURNING *;
\ No newline at end of file
diff --git a/signup/index.php b/signup/index.php
deleted file mode 100644
index 02ae5d8..0000000
--- a/signup/index.php
+++ /dev/null
@@ -1,108 +0,0 @@
-
-
-
-