| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Fitbit Consent Screen</title> |
| <style> |
| body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width:1080px; height:2400px; |
| position:relative; overflow:hidden; |
| background:#FFFFFF; color:#1f1f1f; |
| } |
| |
| .status-bar { |
| height:110px; padding:0 36px; |
| display:flex; align-items:center; justify-content:space-between; |
| font-weight:600; font-size:40px; color:#2b2b2b; |
| } |
| .status-icons { display:flex; align-items:center; gap:34px; } |
| .icon { width:44px; height:44px; } |
| |
| .close-wrap { |
| position:absolute; left:36px; top:130px; |
| width:72px; height:72px; display:flex; align-items:center; justify-content:center; |
| } |
| .content { |
| padding:180px 64px 280px; |
| } |
| h1 { |
| font-size:64px; line-height:78px; text-align:center; |
| font-weight:800; margin:0 80px 48px; color:#0f0f0f; |
| } |
| p { font-size:40px; line-height:56px; margin:0 0 32px; color:#2a2a2a; } |
| .section-title { font-weight:800; font-size:44px; margin:40px 0 12px; color:#1a1a1a; } |
| ul { margin:0 0 32px 32px; padding-left:32px; } |
| li { font-size:40px; line-height:56px; margin:8px 0; } |
| a { color:#197c86; text-decoration:underline; } |
| |
| .bottom-note { |
| position:absolute; left:0; right:0; bottom:240px; |
| text-align:center; font-size:38px; color:#696969; |
| } |
| .agree-btn { |
| position:absolute; left:70px; right:70px; bottom:120px; |
| height:130px; background:#2b7a7f; color:#ffffff; |
| border-radius:65px; display:flex; align-items:center; justify-content:center; |
| font-size:48px; font-weight:800; letter-spacing:1px; |
| } |
| .home-indicator { |
| position:absolute; left:50%; transform:translateX(-50%); |
| bottom:54px; width:520px; height:12px; background:#9F9F9F; border-radius:8px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>10:18</div> |
| <div class="status-icons"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M2 12l5-5 5 5-2 2-3-3-3 3z" fill="#717171"/> |
| </svg> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <circle cx="6" cy="12" r="2" fill="#717171"/> |
| <circle cx="12" cy="12" r="2" fill="#717171"/> |
| <circle cx="18" cy="12" r="2" fill="#717171"/> |
| </svg> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M3 18c3-6 6-9 9-9s6 3 9 9" stroke="#717171" stroke-width="2" fill="none"/> |
| </svg> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M4 18h16v2H4zm2-8h12v6H6z" fill="#717171"/> |
| </svg> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <rect x="3" y="7" width="18" height="10" rx="2" ry="2" stroke="#717171" stroke-width="2" fill="none"/> |
| <rect x="6" y="10" width="10" height="4" fill="#717171"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="close-wrap"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M5 5l14 14M19 5L5 19" stroke="#3b3b3b" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="content"> |
| <h1>Use your phone to track metrics with Fitbit?</h1> |
|
|
| <p>Use your phone with the Fitbit app to track metrics and enable features that help you meet your goals</p> |
|
|
| <div class="section-title">How it works</div> |
| <p>After you connect your phone to the Fitbit app, it collects your activity data including:</p> |
|
|
| <ul> |
| <li>Steps taken</li> |
| <li>Distance traveled</li> |
| <li>Calories burned</li> |
| </ul> |
|
|
| <p>This data is used to provide you with <a href="#">Fitbit metrics and features</a>. Some of these features may require additional consent.</p> |
|
|
| <div class="section-title">Managing your data</div> |
| <p>You can disconnect your phone from your account, and download or delete your data, in Fitbit settings.</p> |
|
|
| <p>When you disconnect your phone, the Fitbit app will no longer receive new data from your phone. Existing data in the Fitbit app won’t be affected.</p> |
| </div> |
|
|
| <div class="bottom-note">You must read and accept to continue.</div> |
| <div class="agree-btn">I AGREE</div> |
| <div class="home-indicator"></div> |
|
|
| </div> |
| </body> |
| </html> |