Welcome back

Sign in to access your pallet inventory tracker.

var ADMIN_PASSWORD = '0924'; var GUEST_PASSWORD = '19881'; var currentRole = 'admin'; function doLogin() { var pw = document.getElementById('login-password').value; var role = document.getElementById('login-role').value; var ok = (role === 'admin' && pw === ADMIN_PASSWORD) || (role === 'guest' && pw === GUEST_PASSWORD); if(ok) { currentRole = role; sessionStorage.setItem('pt_auth','1'); sessionStorage.setItem('pt_role', role); document.getElementById('login-screen').style.display = 'none'; document.getElementById('app-screen').style.display = ''; applyThemeIcon(); init(); setTimeout(function(){ applyRole(); }, 300); } else { document.getElementById('login-error').style.display = 'flex'; } } function doLogout() { sessionStorage.removeItem('pt_auth'); sessionStorage.removeItem('pt_role'); currentRole = 'admin'; document.getElementById('login-screen').style.display = 'flex'; document.getElementById('app-screen').style.display = 'none'; document.getElementById('login-password').value = ''; document.getElementById('login-error').style.display = 'none'; } function applyRole() { try { var role = currentRole || sessionStorage.getItem('pt_role') || 'admin'; var isAdmin = role === 'admin'; document.querySelectorAll('.tabs .tab').forEach(function(tab){ var txt = tab.textContent || ''; if(txt.indexOf('Log shipment') !== -1) tab.style.display = isAdmin ? '' : 'none'; if(txt.indexOf('Customers') !== -1) tab.style.display = isAdmin ? '' : 'none'; }); document.querySelectorAll('.admin-only').forEach(function(el){ el.style.display = isAdmin ? '' : 'none'; }); var badge = document.getElementById('role-badge'); if(badge){ badge.textContent = isAdmin ? 'Admin' : 'Guest'; badge.style.background = isAdmin ? 'var(--accent-light)' : 'var(--surface2)'; badge.style.color = isAdmin ? 'var(--accent)' : 'var(--text2)'; } if(!isAdmin){ var allTabs = document.querySelectorAll('.tabs .tab'); allTabs.forEach(function(tab){ if(tab.getAttribute('onclick') && tab.getAttribute('onclick').indexOf("'dashboard'") !== -1){ setTab('dashboard', tab); } }); } } catch(e){ console.error('applyRole error:', e); } } if(sessionStorage.getItem('pt_auth') === '1'){ currentRole = sessionStorage.getItem('pt_role') || 'admin'; document.getElementById('login-screen').style.display = 'none'; document.getElementById('app-screen').style.display = ''; applyThemeIcon(); init(); setTimeout(function(){ applyRole(); }, 300); }CTYPE html> Pallet Inventory Tracker var ADMIN_PASSWORD = '0924'; var GUEST_PASSWORD = '19881'; var currentRole = 'admin';