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
11  id="protectedAuth" data-l10n-id="protected-auth-window"
12  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
13  xmlns:html="http://www.w3.org/1999/xhtml"
14  onload="onLoad();"
15  onclose="onClose();"
16>
17<linkset>
18  <html:link rel="localization" href="security/pippki/pippki.ftl"/>
19</linkset>
20
21<stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/>
22
23<script src="pippki.js" />
24<script src="protectedAuth.js" />
25<script src="chrome://help/content/help.js" />
26
27<vbox style="margin: 5px; max-width: 50em;">
28
29  <description data-l10n-id="protected-auth-msg"></description>
30
31  <hbox>
32         <description data-l10n-id="protected-auth-token"></description>
33         <description id="tokenName"></description>
34  </hbox>
35
36</vbox>
37</window>
38