File size: 4,650 Bytes
98687c3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | <html>
<head>
<meta charset="UTF-8">
<title>Fitbit Onboarding UI</title>
<style>
body { margin:0; padding:0; background: transparent; font-family: Roboto, Arial, Helvetica, sans-serif; }
#render-target {
width:1080px; height:2400px;
position:relative; overflow:hidden;
background:#F4F5F3;
}
/* Status bar */
.status-bar {
position:absolute; top:0; left:0; width:100%; height:120px;
padding:0 40px;
display:flex; align-items:center; justify-content:space-between;
color:#2F2F2F; font-size:38px; letter-spacing:0.2px;
}
.status-left { display:flex; align-items:center; gap:18px; }
.status-right { display:flex; align-items:center; gap:28px; }
/* Content */
.content {
position:absolute; left:64px; right:64px; top:180px;
}
.logo {
width:120px; height:120px;
display:flex; align-items:center; justify-content:flex-start;
margin-bottom:40px;
}
h1 {
font-size:72px; line-height:88px; margin:0 0 40px 0;
color:#1E2A26; font-weight:700;
letter-spacing:-0.5px;
}
.para {
font-size:40px; line-height:60px; color:#6A706C;
margin-bottom:42px;
}
/* Bottom actions */
.actions {
position:absolute; left:64px; right:64px; bottom:220px;
}
.btn {
height:120px; border-radius:64px; display:flex; align-items:center; justify-content:center;
font-size:40px; font-weight:600; letter-spacing:0.2px;
}
.btn-primary {
background:#2E6F63; color:#FFFFFF; box-shadow: none;
}
.btn-outline {
margin-top:30px;
background:transparent; color:#2E6F63;
border:2px solid #9AA8A3;
}
.link {
text-align:center; margin-top:56px; color:#2E6F63; font-size:38px;
}
/* Utility small muted text style for secondary lines if needed */
.muted { color:#7A807C; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<span>10:02</span>
</div>
<div class="status-right">
<!-- Cellular -->
<svg width="36" height="36" viewBox="0 0 24 24">
<rect x="2" y="16" width="2" height="5" fill="#2F2F2F"></rect>
<rect x="6" y="12" width="2" height="9" fill="#2F2F2F"></rect>
<rect x="10" y="8" width="2" height="13" fill="#2F2F2F"></rect>
<rect x="14" y="4" width="2" height="17" fill="#2F2F2F"></rect>
</svg>
<!-- Wi-Fi -->
<svg width="36" height="36" viewBox="0 0 24 24">
<path d="M2 8c5-4 15-4 20 0" stroke="#2F2F2F" stroke-width="2" fill="none" />
<path d="M5 12c4-3 10-3 14 0" stroke="#2F2F2F" stroke-width="2" fill="none" />
<path d="M8 16c3-2 5-2 8 0" stroke="#2F2F2F" stroke-width="2" fill="none" />
<circle cx="12" cy="19" r="2" fill="#2F2F2F"></circle>
</svg>
<!-- Do Not Disturb dot -->
<svg width="12" height="12"><circle cx="6" cy="6" r="6" fill="#2F2F2F"></circle></svg>
<!-- Battery -->
<svg width="46" height="36" viewBox="0 0 28 16">
<rect x="1" y="2" width="22" height="12" rx="2" ry="2" stroke="#2F2F2F" fill="none" stroke-width="2"></rect>
<rect x="3" y="4" width="17" height="8" fill="#2F2F2F"></rect>
<rect x="24" y="5" width="3" height="6" rx="1" fill="#2F2F2F"></rect>
</svg>
</div>
</div>
<!-- Main Content -->
<div class="content">
<!-- Fitbit dots logo -->
<div class="logo">
<svg width="120" height="120" viewBox="0 0 120 120">
<!-- cluster of teal dots approximating Fitbit logo -->
<circle cx="30" cy="50" r="9" fill="#2E6F63"></circle>
<circle cx="54" cy="32" r="9" fill="#2E6F63"></circle>
<circle cx="78" cy="20" r="9" fill="#2E6F63"></circle>
<circle cx="54" cy="68" r="9" fill="#2E6F63"></circle>
<circle cx="78" cy="56" r="9" fill="#2E6F63"></circle>
<circle cx="102" cy="44" r="9" fill="#2E6F63"></circle>
<circle cx="78" cy="92" r="9" fill="#2E6F63"></circle>
<circle cx="54" cy="104" r="9" fill="#2E6F63"></circle>
<circle cx="30" cy="86" r="9" fill="#2E6F63"></circle>
</svg>
</div>
<h1>Looks like you're new to Fitbit</h1>
<div class="para">We couldn't find a Fitbit profile associated with this Google Account.</div>
<div class="para">If you've used Fitbit before, you can sign in to move your existing Fitbit profile and information to your Google Account.</div>
</div>
<!-- Bottom actions -->
<div class="actions">
<div class="btn btn-primary">Continue as a new user</div>
<div class="btn btn-outline">Sign in with existing Fitbit account</div>
<div class="link">Go back</div>
</div>
</div>
</body>
</html> |