39 lines
1.0 KiB
HTML
39 lines
1.0 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/fav.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Calistoga&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
|
|
<title>Pozo Retail Software</title>
|
|
<script>
|
|
// Disable right-click menu and common hotkeys
|
|
document.addEventListener('contextmenu', (event) =>
|
|
event.preventDefault()
|
|
);
|
|
document.addEventListener('keydown', (event) => {
|
|
if (
|
|
(event.ctrlKey &&
|
|
event.shiftKey &&
|
|
['I', 'J', 'C'].includes(event.key.toUpperCase())) ||
|
|
(event.ctrlKey && ['U', 'S'].includes(event.key.toUpperCase())) ||
|
|
event.key === 'F12'
|
|
) {
|
|
event.preventDefault();
|
|
return false;
|
|
}
|
|
});
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|