Files
boc/quixzoom-landing-fixed/register.html
T
Bernt 1a12fb870b dev-api: add developer portal, OpenAPI spec, and Flatenbadet case study
- New /developers/ page with API docs, SDKs, pricing, use cases
- OpenAPI 3.0 spec for Orders, Missions, Photos, Analytics
- Case study: Glasskiosken i Flatenbadet — complete ROI analysis
- Updated /order/ with recurring missions and frequency dropdown
2026-07-14 15:27:33 +00:00

284 lines
7.6 KiB
HTML

<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bli Zoomer — quiXzoom</title>
<link rel="stylesheet" href="/design-tokens.css">
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: #000;
color: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
}
.logo {
font-size: 32px;
font-weight: 800;
background: linear-gradient(135deg, #0A84FF 0%, #5E5CE6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 8px;
}
.subtitle {
color: rgba(255,255,255,0.6);
font-size: 16px;
margin-bottom: 40px;
}
.form-card {
background: rgba(28,28,30,0.9);
border: 0.5px solid rgba(255,255,255,0.1);
border-radius: 20px;
padding: 32px;
width: 100%;
max-width: 400px;
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
font-size: 14px;
font-weight: 600;
margin-bottom: 8px;
color: rgba(255,255,255,0.8);
}
input {
width: 100%;
padding: 14px 16px;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.15);
background: rgba(255,255,255,0.05);
color: #fff;
font-size: 16px;
outline: none;
transition: border-color 0.2s;
}
input:focus {
border-color: #0A84FF;
}
input::placeholder {
color: rgba(255,255,255,0.3);
}
.btn {
width: 100%;
padding: 16px;
border-radius: 14px;
border: none;
background: #0A84FF;
color: #fff;
font-size: 17px;
font-weight: 700;
cursor: pointer;
transition: opacity 0.2s;
margin-top: 8px;
}
.btn:active {
opacity: 0.8;
}
.login-link {
text-align: center;
margin-top: 20px;
color: rgba(255,255,255,0.5);
font-size: 15px;
}
.login-link a {
color: #0A84FF;
text-decoration: none;
font-weight: 600;
}
.features {
display: flex;
gap: 16px;
margin-top: 32px;
justify-content: center;
flex-wrap: wrap;
}
.feature {
text-align: center;
color: rgba(255,255,255,0.5);
font-size: 13px;
}
.feature-icon {
font-size: 24px;
margin-bottom: 4px;
}
/* QUIXZOOM STANDARD — Dark Theme */
:root {
--qz-bg: #0a0a0a;
--qz-surface: #111111;
--qz-surface-2: #1a1a1a;
--qz-border: rgba(255,255,255,0.08);
--qz-text: #e8e8e8;
--qz-text-dim: #a0a0a0;
--qz-text-muted: #6b6b6b;
--qz-blue: #007AFF;
--qz-blue-dark: #0056CC;
--qz-radius: 10px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
background: var(--qz-bg);
color: var(--qz-text);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
/* Navigation */
.qz-nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
display: flex; align-items: center; justify-content: space-between;
padding: 0 24px; height: 56px;
background: rgba(255,255,255,0.92);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--qz-border);
}
.qz-nav-logo { font-size: 18px; font-weight: 700; color: #fff; text-decoration: none; }
.qz-nav-links { display: flex; gap: 24px; list-style: none; }
.qz-nav-links a { font-size: 14px; color: var(--qz-text-dim); text-decoration: none; transition: color 0.2s; }
.qz-nav-links a:hover { color: #fff; }
/* Buttons */
.qz-btn {
display: inline-flex; align-items: center; gap: 6px;
padding: 12px 24px; border-radius: var(--qz-radius);
font-size: 15px; font-weight: 600; text-decoration: none;
transition: all 0.2s; cursor: pointer; border: none;
}
.qz-btn-primary {
background: var(--qz-blue); color: #fff;
}
.qz-btn-primary:hover {
background: var(--qz-blue-dark); transform: translateY(-1px);
}
.qz-btn-ghost {
background: transparent; color: var(--qz-text);
border: 1px solid var(--qz-border);
}
.qz-btn-ghost:hover {
border-color: var(--qz-blue); color: var(--qz-blue);
}
/* Cards */
.qz-card {
background: var(--qz-surface);
border: 1px solid var(--qz-border);
border-radius: var(--qz-radius);
padding: 24px;
transition: transform 0.2s, border-color 0.2s;
}
.qz-card:hover {
transform: translateY(-2px);
border-color: rgba(0,122,255,0.3);
}
/* Footer */
.qz-footer {
border-top: 1px solid var(--qz-border);
padding: 40px 24px;
text-align: center;
color: var(--qz-text-dim);
font-size: 14px;
}
/* Banner */
.qz-banner {
background: #001E50;
color: rgba(255,255,255,0.55);
text-align: center;
padding: 10px;
font-size: 12px;
}
.qz-banner a { color: rgba(255,255,255,0.8); text-decoration: none; }
@media (max-width: 768px) {
.qz-nav-links { display: none; }
}
</style>
<script type="module" src="https://auth.quixzoom.com/site-auth-snippet.js"></script>
<link rel="alternate" hreflang="en" href="https://www.quixzoom.com/" />
<link rel="alternate" hreflang="sv" href="https://www.quixzoom.com/sv/" />
<link rel="alternate" hreflang="de" href="https://www.quixzoom.com/de/" />
<link rel="alternate" hreflang="fr" href="https://www.quixzoom.com/fr/" />
<link rel="alternate" hreflang="es" href="https://www.quixzoom.com/es/" />
<link rel="alternate" hreflang="it" href="https://www.quixzoom.com/it/" />
<link rel="alternate" hreflang="nl" href="https://www.quixzoom.com/nl/" />
<link rel="alternate" hreflang="x-default" href="https://www.quixzoom.com/" />
</head>
<body>
<div class="logo">quiXzoom</div>
<div class="subtitle">Bli en Zoomer — tjana pengar pa faltet</div>
<div class="form-card">
<form onsubmit="handleRegister(event)">
<div class="form-group">
<label for="name">Fullstandigt namn</label>
<input type="text" id="name" placeholder="Anna Svensson" required>
</div>
<div class="form-group">
<label for="email">E-post</label>
<input type="email" id="email" placeholder="anna@exempel.se" required>
</div>
<div class="form-group">
<label for="phone">Telefonnummer</label>
<input type="tel" id="phone" placeholder="+46 70 123 45 67" required>
</div>
<div class="form-group">
<label for="password">Losenord</label>
<input type="password" id="password" placeholder="Minst 8 tecken" required minlength="8">
</div>
<button type="submit" class="btn">Skapa konto</button>
</form>
<div class="login-link">
Har du redan ett konto? <a href="/login">Logga in</a>
</div>
</div>
<div class="features">
<div class="feature">
<div class="feature-icon">📷</div>
<div>Fotografera</div>
</div>
<div class="feature">
<div class="feature-icon">💰</div>
<div>Tjana pengar</div>
</div>
<div class="feature">
<div class="feature-icon">🌍</div>
<div>Flexibelt</div>
</div>
</div>
<script>
function handleRegister(e) {
e.preventDefault();
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
// Demo: store in localStorage
localStorage.setItem('qz_user', JSON.stringify({
name: name,
email: email,
registered: new Date().toISOString()
}));
alert('Valkommen till quiXzoom, ' + name + '!\n\nI demo-laget: Omdirigerar till appen...');
window.location.href = '/zoomer-app.html';
}
</script>
</body>
</html>