/smartfix ├── index.html (login) ├── admin.html (painel) ├── app.html (funcionário) ├── style.css ├── firebase.js ├── logo.png const firebaseConfig = { apiKey: "SUA_CHAVE", authDomain: "SEU_APP.firebaseapp.com", projectId: "SEU_ID", }; firebase.initializeApp(firebaseConfig); const auth = firebase.auth(); const db = firebase.firestore();
SmartFix Login
Login
Entrar
SmartFix Ponto
Bater Ponto
Capturar Foto
Bater Ponto
body { font-family: Arial; background: #0f0f0f; color: white; text-align: center; } .container { background: #1c1c1c; padding: 20px; margin: 40px auto; width: 350px; border-radius: 10px; } input, button { width: 90%; padding: 10px; margin: 5px; } button { background: #007bff; color: white; border: none; }