Add contact email support and band contact form

This commit is contained in:
2025-11-17 22:17:59 +01:00
parent a7a619079a
commit 2c1cb35025
23 changed files with 1965 additions and 303 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
const SITE_NAME = 'GetYourBand';
const DB_PATH = __DIR__ . '/../storage/database.sqlite';
const SUPPORT_EMAIL = 'support@getyourband.ch';
const BASE_URL = '';
const COOKIE_NAME = 'gyb_consent';
if (!is_dir(__DIR__ . '/../storage')) {
mkdir(__DIR__ . '/../storage', 0775, true);
}