tor-browser

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

resetpassword.xhtml (1338B)


      1 <?xml version="1.0"?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 
      6 <!DOCTYPE window>
      7 
      8 <window
      9  data-l10n-id="reset-primary-password-window2"
     10  data-l10n-attrs="title, style"
     11  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     12  xmlns:html="http://www.w3.org/1999/xhtml"
     13 >
     14  <dialog
     15    id="reset_password"
     16    buttons="accept,cancel"
     17    buttonidaccept="reset-password-button-label"
     18    defaultButton="cancel"
     19  >
     20    <linkset>
     21      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     22 
     23      <html:link rel="localization" href="security/pippki/pippki.ftl" />
     24    </linkset>
     25 
     26    <stringbundle
     27      id="pippki_bundle"
     28      src="chrome://pippki/locale/pippki.properties"
     29    />
     30 
     31    <script src="chrome://pippki/content/resetpassword.js" />
     32 
     33    <hbox flex="1">
     34      <vbox>
     35        <image class="alert-icon" style="margin: 5px" />
     36      </vbox>
     37      <vbox style="margin: 5px" flex="1">
     38        <hbox flex="1">
     39          <vbox flex="1">
     40            <description
     41              data-l10n-id="reset-primary-password-text"
     42            ></description>
     43          </vbox>
     44        </hbox>
     45      </vbox>
     46    </hbox>
     47  </dialog>
     48 </window>