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="reset-primary-password-window"
11  data-l10n-attrs="title, style"
12  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
13  xmlns:html="http://www.w3.org/1999/xhtml">
14<dialog id="reset_password"
15  buttons="accept,cancel"
16  buttonidaccept="reset-password-button-label"
17  defaultButton="cancel">
18
19<linkset>
20  <html:link rel="localization" href="security/pippki/pippki.ftl"/>
21</linkset>
22
23  <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/>
24
25  <script src="chrome://pippki/content/pippki.js"/>
26  <script src="chrome://pippki/content/resetpassword.js"/>
27
28  <hbox flex="1">
29    <vbox>
30      <image class="alert-icon" style="margin: 5px;"/>
31    </vbox>
32    <vbox style="margin: 5px;" flex="1">
33      <hbox flex="1">
34        <vbox flex="1">
35          <description data-l10n-id="reset-primary-password-text"></description>
36        </vbox>
37      </hbox>
38    </vbox>
39  </hbox>
40</dialog>
41</window>
42