Initial commit — Rosary Presenter App

Full source for loveandrosary.com: slide-based Rosary/novena/Divine Mercy
Chaplet presentation tool with multi-user roles, SVG bead ring, audio uploads,
donate strip, and public session profiles.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-13 18:44:08 -07:00
commit 663fde3909
46 changed files with 10902 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
<?php
// Redirect to admin version
require_once __DIR__ . '/config/db.php';
$id = isset($_GET['id']) ? '?id=' . (int)$_GET['id'] : '';
header('Location: ' . BASE_URL . '/admin/setup.php' . $id);
exit;