tor-browser

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

setp12password.xhtml (1728B)


      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 <?csp default-src chrome:; style-src chrome: 'unsafe-inline'; ?>
      7 
      8 <!DOCTYPE window>
      9 
     10 <window
     11  data-l10n-id="set-password-window"
     12  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     13  xmlns:html="http://www.w3.org/1999/xhtml"
     14  style="width: 48em"
     15 >
     16  <dialog id="setp12password" buttons="accept,cancel">
     17    <linkset>
     18      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     19 
     20      <html:link rel="localization" href="security/pippki/pippki.ftl" />
     21    </linkset>
     22 
     23    <script src="chrome://global/content/globalOverlay.js" />
     24    <script src="chrome://global/content/editMenuOverlay.js" />
     25 
     26    <script src="chrome://pippki/content/setp12password.js" />
     27 
     28    <description data-l10n-id="set-password-message"></description>
     29    <separator />
     30    <vbox>
     31      <hbox class="input-row">
     32        <label flex="1" data-l10n-id="set-password-backup-pw" />
     33        <html:input id="pw1" type="password" />
     34      </hbox>
     35      <hbox class="input-row">
     36        <label flex="1" data-l10n-id="set-password-repeat-backup-pw" />
     37        <html:input id="pw2" type="password" />
     38      </hbox>
     39    </vbox>
     40    <separator />
     41    <description data-l10n-id="set-password-reminder"></description>
     42    <separator />
     43 
     44    <vbox style="margin: 6px">
     45      <html:label
     46        for="pwmeter"
     47        style="display: flex"
     48        data-l10n-id="password-quality-meter"
     49      ></html:label>
     50      <html:progress id="pwmeter" value="0" max="100" />
     51    </vbox>
     52  </dialog>
     53 </window>