This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Base de datos simulada de usuarios (puedes expandirla o usar localStorage/servidor) | |
| const authorizedUsers = [ | |
| { id: "70825391", name: "Felipe Trujillo", qrCode: "https://qrs.ly/4eg9s4o", rut: "175693440" }, | |
| { id: "70826773", name: "Kyria Oyarce", qrCode: "https://qrs.ly/7ig9t4q", rut: "187324122" }, | |
| { id: "11111111", name: "Flavio Azocar", qrCode: "166469740", rut: "166469740" }, | |
| { id: "71173114", name: "Valeria Valenzuela", qrCode: "https://qrs.ly/zqgghrg", rut: "185709361" } | |
| ]; | |
| // Variables globales (inicio del archivo) | |
| let assistedQuantityEnabled = localStorage.getItem("assistedQuantityEnabled") === "true" || false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Picker by Stocka</title> | |
| <link rel="stylesheet" href="styles.css"> | |
| <link rel="icon" type="image/png" href="favicon.png"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="es"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Picker by Stocka</title> | |
| <link rel="stylesheet" href="styles.css"> | |
| <link rel="icon" type="image/png" href="favicon.png"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" |