Implementieren der PWA, Multi-Instanzen-Passwort-Schutz und Kassen-Löschfunktion

This commit is contained in:
2026-02-24 16:33:16 +01:00
parent 1a12dcd1d0
commit 8b12d17935
11 changed files with 645 additions and 153 deletions

21
static/manifest.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "erdbeerrechner",
"short_name": "erdbeer",
"description": "Eine anpassbare Kassen-App.",
"start_url": "/",
"display": "standalone",
"background_color": "#f8f9fa",
"theme_color": "#dc3545",
"icons": [
{
"src": "/static/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/static/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}