home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / pippki.jar / content / pippki / getpassword.xul < prev    next >
Extensible Markup Language  |  2002-02-12  |  2KB  |  71 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.    - Contributor(s):
  21.    -   Bob Lord <lord@netscape.com>
  22.    -   Terry Hayes <thayes@netscape.com>
  23.    -   Ian McGreer <mcgreer@netscape.com>
  24.   -->
  25.  
  26. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  27.  
  28. <!DOCTYPE window SYSTEM "chrome://pippki/locale/pippki.dtd">
  29.  
  30. <window id="getpassword" title="&getPassword.title;"
  31.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"      
  32.   style="width: 30em;"
  33.   onload="onLoad();">
  34.  
  35.   <script type="application/x-javascript" src="chrome://pippki/content/password.js"/>
  36.   <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  37.  
  38.   <vbox style="margin: 5px;" flex="1">
  39.     <hbox>
  40.       <label value="&getPassword.tokenName.label;:"/>
  41.       <label id="tokenName"/>
  42.     </hbox>
  43.     <separator/>
  44.     <grid>
  45.       <columns> <column/> <column/> </columns>
  46.       <rows>
  47.         <row>
  48.           <label value="&getPassword.password.label;"/> 
  49.           <textbox id="pw1" type="password"/> 
  50.         </row>
  51.       </rows>
  52.     </grid>
  53.  
  54.     <keyset id="keys">
  55.       <key id="enter-key"  keycode="VK_ENTER"  oncommand="doOK();"/>
  56.       <key id="return-key" keycode="VK_RETURN" oncommand="doOK();"/>
  57.       <key id="esc-key"    keycode="VK_ESCAPE" oncommand="doCancel();"/>
  58.     </keyset>
  59.  
  60.     <hbox>
  61.       <button id="ok-button" label="&ok.label;"
  62.               oncommand="getPassword();" 
  63.               default="true" accesskey="&createCertInfo.okButtonAccessKey;"/> 
  64.       <button id="cancel-button" label="&cancel.label;"
  65.               oncommand="window.close();"/> 
  66.       <button id="help-button" label="&help.label;"
  67.               oncommand="alert('help goes here');"/> 
  68.     </hbox>
  69.   </vbox>
  70. </window>
  71.