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