feat: Passwordless cross-device authentication

- Arkitektur: docs/auth/passwordless-architecture.md
- Backend: iom/quixzoom-auth-service/ (FastAPI + Redis)
- Webb: quixzoom-market-pages/se/login/ (QR-kod + polling)
- App: iom/quixzoom-app/src/features/auth/ (push + deep links)

Flöde: QR-kod → app-godkännande → webb-inloggad
This commit is contained in:
Bernt
2026-07-07 07:11:50 +00:00
parent 4aa984ad74
commit 6989a98d75
61843 changed files with 5491611 additions and 872231 deletions
+3 -3
View File
@@ -11,14 +11,14 @@ body { font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif; line
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.5em; }
.subtitle { color: #666; font-size: 1.2rem; margin-bottom: 3em; }
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2em; }
.article-card { border: 1px solid #eee; border-radius: 8px; padding: 24px; transition: box-shadow 0.2s; }
.article-card { border: 1px solid #eee; border-radius: var(--radius-md); padding: 24px; transition: box-shadow 0.2s; }
.article-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.article-card h2 { font-size: 1.3rem; margin-top: 0; }
.article-card a { color: #1a1a1a; text-decoration: none; }
.article-card a:hover { color: #0066cc; }
.article-meta { color: #666; font-size: 0.85rem; margin-top: 1em; }
.tag { display: inline-block; background: #f5f5f5; padding: 4px 12px; border-radius: 4px; font-size: 0.8rem; margin-right: 8px; }
.cta-section { background: #f5f5f5; padding: 32px; border-radius: 8px; margin: 3em 0; text-align: center; }
.tag { display: inline-block; background: #f5f5f5; padding: 4px 12px; border-radius: var(--radius-sm); font-size: 0.8rem; margin-right: 8px; }
.cta-section { background: #f5f5f5; padding: 32px; border-radius: var(--radius-md); margin: 3em 0; text-align: center; }
.cta-section a { color: #0066cc; text-decoration: none; font-weight: 600; font-size: 1.1rem; }
</style>
</head>