summaryrefslogtreecommitdiffstats
path: root/static/contact.php
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-15 15:58:26 +0200
committerDanilo M. <danix@danix.xyz>2026-04-15 15:58:26 +0200
commit0f0fb848fc6f7e6c3333c6b4595aa8dcaff92068 (patch)
tree9301894c77ede04a82765a6b36dcd232e6f2e70b /static/contact.php
parenta73106a477875faa1340c06ab3ac48b7ce5f2104 (diff)
downloaddanixxyz-0f0fb848fc6f7e6c3333c6b4595aa8dcaff92068.tar.gz
danixxyz-0f0fb848fc6f7e6c3333c6b4595aa8dcaff92068.zip
added contact form backend
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']);
-}
-?>