summaryrefslogtreecommitdiffstats
path: root/static/contact.php
diff options
context:
space:
mode:
Diffstat (limited to 'static/contact.php')
-rw-r--r--static/contact.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/static/contact.php b/static/contact.php
deleted file mode 100644
index ddd3fe1..0000000
--- a/static/contact.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-// Placeholder contact form endpoint
-// This file should be implemented by the site owner
-// to handle form submissions and send emails
-
-if ($_SERVER['REQUEST_METHOD'] === 'POST') {
- // TODO: Implement contact form handler
- http_response_code(501);
- echo json_encode(['error' => 'Contact form handler not implemented']);
-}
-?>