Admin Control Panel

Admin Access Required

Enter the password to access the admin panel.

Incorrect password. Please try again.

In Development Mode

Current Status: OFF

All Client Refresh

All clients will reload when triggered.
To enable auto-refresh on other pages, add this snippet:
<script type="module">
          import { initializeApp } from "https://www.gstatic.com/firebasejs/10.7.1/firebase-app.js";
          import { getDatabase, ref, onValue } from "https://www.gstatic.com/firebasejs/10.7.1/firebase-database.js";
          const firebaseConfig = { /* ...your config... */ };
          const app = initializeApp(firebaseConfig);
          const db = getDatabase(app);
          onValue(ref(db, "admin/refresh"), snap => {
            const val = snap.val();
            if (val && (!window._lastRefresh || window._lastRefresh !== val)) {
              window._lastRefresh = val;
              if (val !== 0) location.reload();
            }
          });
          </script>