// ==================================================================== // LYT Manager — Login Credentials // Kushiyara Solution Limited | Co. No. 15816673 // ==================================================================== // SECURITY: Protect this file. // Add the following to a .htaccess file inside /data/: // // Deny from all // // This prevents direct browser access to all files in /data/ // ==================================================================== // // To add or change users: // 1. Generate a SHA-256 hash of the new password: // - Online tool: https://emn178.github.io/online-tools/sha256.html // - Or in browser console: // const h = await crypto.subtle.digest('SHA-256', new TextEncoder().encode('yourpassword')); // console.log(Array.from(new Uint8Array(h)).map(b=>b.toString(16).padStart(2,'0')).join('')); // 2. Replace the hash value below // // Current credentials: // Username : habib // Password : habib123 // ==================================================================== window.LYT_USERS = { 'habib': { // Password: habib123 hash: 'f4b0636f8a5cca16172304530dd1e16410beafff0a8438a08a4f04ee94471cb5', name: 'Habibur Rahman', role: 'admin' } };