|
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 |
|
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
|
8 |
|
9 <!DOCTYPE dialog [ |
|
10 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" > |
|
11 <!ENTITY % removempDTD SYSTEM "chrome://mozapps/locale/preferences/removemp.dtd" > |
|
12 %brandDTD; |
|
13 %removempDTD; |
|
14 ]> |
|
15 |
|
16 <dialog id="removemp" title="&removePassword.title;" |
|
17 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
18 style="width: 35em;" |
|
19 ondialogaccept="gRemovePasswordDialog.removePassword();" |
|
20 onload="gRemovePasswordDialog.init()"> |
|
21 |
|
22 <script type="application/javascript" src="chrome://mozapps/content/preferences/removemp.js"/> |
|
23 |
|
24 <stringbundle id="bundlePreferences" src="chrome://mozapps/locale/preferences/preferences.properties"/> |
|
25 |
|
26 <vbox id="warnings"> |
|
27 <description>&removeWarning1.label;</description> |
|
28 <description class="header">&removeWarning2.label;</description> |
|
29 </vbox> |
|
30 |
|
31 <separator class="thin"/> |
|
32 |
|
33 <groupbox> |
|
34 <caption label="&removeInfo.label;"/> |
|
35 |
|
36 <hbox align="center"> |
|
37 <label control="password" value="&setPassword.oldPassword.label;"/> |
|
38 <textbox id="password" type="password" |
|
39 oninput="gRemovePasswordDialog.validateInput();" |
|
40 aria-describedby="warnings"/> |
|
41 </hbox> |
|
42 </groupbox> |
|
43 |
|
44 <separator/> |
|
45 |
|
46 </dialog> |