home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / resetpassword.xul < prev    next >
Extensible Markup Language  |  2002-06-25  |  2KB  |  58 lines

  1. <?xml version="1.0"?>
  2. <!-- 
  3.    - The contents of this file are subject to the Mozilla Public
  4.    - License Version 1.1 (the "License"); you may not use this file
  5.    - except in compliance with the License. You may obtain a copy of
  6.    - the License at http://www.mozilla.org/MPL/
  7.    - 
  8.    - Software distributed under the License is distributed on an "AS
  9.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.    - implied. See the License for the specific language governing
  11.    - rights and limitations under the License.
  12.    - 
  13.    - The Original Code is mozilla.org code.
  14.    - 
  15.    - The Initial Developer of the Original Code is Netscape
  16.    - Communications Corp.  Portions created by Netscape are
  17.    - Copyright (C) 2001 Netscape Communications Corp.  All
  18.    - Rights Reserved.
  19.   -->
  20.  
  21. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  22.  
  23. <!DOCTYPE window SYSTEM "chrome://pippki/locale/pippki.dtd">
  24.  
  25. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  26.  
  27. <window id="reset_password" title="&resetPassword.title;"
  28.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"      
  29.   style="width: 40em;" onload="onLoad();">
  30.  
  31.   <keyset id="keys">
  32.     <key id="enter-key"  keycode="VK_ENTER"  oncommand="window.close();"/>
  33.     <key id="return-key" keycode="VK_RETURN" oncommand="window.close();"/>
  34.     <key id="esc-key"    keycode="VK_ESCAPE" oncommand="window.close();"/>
  35.   </keyset>
  36.  
  37.   <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/>
  38.  
  39.   <script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
  40.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  41.   <script type="application/x-javascript" src="chrome://pippki/content/resetpassword.js"/>
  42.  
  43.   <hbox flex="1">
  44.     <vbox>
  45.       <image class="alert-icon" style="margin: 5px;"/>
  46.     </vbox>
  47.     <vbox style="margin: 5px;" flex="1">
  48.       <hbox flex="1">
  49.         <vbox flex="1">
  50.           <description>&resetPassword.text;</description>
  51.         </vbox>
  52.       </hbox>
  53.       <separator class="thin"/>
  54.       <hbox id="okCancelHelpButtonsRight"/>
  55.     </vbox>
  56.   </hbox>
  57. </window>
  58.