tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

fxaPairDevice.xhtml (2535B)


      1 <?xml version="1.0"?>
      2 
      3 <!-- -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- -->
      4 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      5   - License, v. 2.0. If a copy of the MPL was not distributed with this
      6   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      7 
      8 <?csp default-src chrome:; img-src chrome: data:; style-src chrome:
      9 'unsafe-inline'; ?>
     10 
     11 <window
     12  id="fxaPairDeviceDialog"
     13  type="child"
     14  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     15  xmlns:html="http://www.w3.org/1999/xhtml"
     16  data-l10n-id="fxa-pair-device-dialog-sync2"
     17  data-l10n-attrs="style"
     18 >
     19  <dialog id="fxaPairDeviceDialog1" buttons="accept">
     20    <linkset>
     21      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     22      <html:link
     23        rel="stylesheet"
     24        href="chrome://browser/skin/preferences/fxaPairDevice.css"
     25      />
     26 
     27      <html:link rel="localization" href="branding/brand.ftl" />
     28      <html:link
     29        rel="localization"
     30        href="browser/preferences/fxaPairDevice.ftl"
     31      />
     32    </linkset>
     33    <script src="chrome://browser/content/preferences/fxaPairDevice.js" />
     34 
     35    <description id="pairTitle" data-l10n-id="fxa-qrcode-pair-title">
     36    </description>
     37    <vbox id="qrCodeDisplay">
     38      <description class="pairHeading" data-l10n-id="fxa-qrcode-pair-step1">
     39      </description>
     40      <description
     41        class="pairHeading"
     42        data-l10n-id="fxa-qrcode-pair-step2-device-steps"
     43      >
     44        <html:img
     45          src="chrome://browser/skin/preferences/ios-menu.svg"
     46          data-l10n-name="ios-menu-icon"
     47          class="menu-icon"
     48        />
     49        <html:img
     50          src="chrome://browser/skin/preferences/android-menu.svg"
     51          data-l10n-name="android-menu-icon"
     52          class="menu-icon"
     53        />
     54      </description>
     55      <description
     56        class="pairHeading"
     57        data-l10n-id="fxa-qrcode-pair-step3"
     58      ></description>
     59      <vbox>
     60        <vbox align="center" id="qrWrapper" pairing-status="loading">
     61          <box id="qrContainer"></box>
     62          <box id="qrSpinner"></box>
     63          <vbox id="qrError">
     64            <image id="refresh-qr" />
     65            <label
     66              class="qr-error-text"
     67              data-l10n-id="fxa-qrcode-error-title"
     68            ></label>
     69            <label
     70              class="qr-error-text"
     71              data-l10n-id="fxa-qrcode-error-body"
     72            ></label>
     73          </vbox>
     74        </vbox>
     75      </vbox>
     76    </vbox>
     77  </dialog>
     78 </window>