Kleine Änderungen

This commit is contained in:
Borgal
2025-10-13 17:44:43 +02:00
parent 1a568d75a7
commit 94aa765186
8 changed files with 838 additions and 701 deletions

View File

@@ -4,12 +4,12 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DoMiLi Farbe der Woche</title>
<title><?php echo htmlspecialchars('DoMiLi Farbe der Woche'); ?></title>
<!-- PWA Meta Tags -->
<meta name="theme-color" content="#212529">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="DoMiLi">
<meta name="apple-mobile-web-app-title" content="<?php echo htmlspecialchars('DoMiLi'); ?>">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Bootstrap -->

16
inc/secure_sample.php Executable file
View File

@@ -0,0 +1,16 @@
<?php
// Zugangsdaten
define('DB_HOST', 'database');
define('DB_USER', 'ChangeMe');
define('DB_PASS', 'ChangeMe');
define('DB_NAME', 'domili');
// SMTP-Konfiguration für PHPMailer
define('SMTP_HOST', 'smtp.strato.de');
define('SMTP_USERNAME', 'ChangeMe');
define('SMTP_PASSWORD', 'ChangeMe');
define('SMTP_PORT', 465);
define('SMTP_ENCRYPTION', 'ssl');
define('MAIL_FROM_ADDRESS', 'ChangeMe');
define('MAIL_FROM_NAME', 'Admin DoMiLi');