home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / toolkit.jar / content / mozapps / autofill / CCardPwdDialog.xul < prev    next >
Extensible Markup Language  |  2005-07-29  |  2KB  |  68 lines

  1. <?xml version="1.0"?> 
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3.  
  4. <window id="autofillCCardPwd"
  5.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  6.         windowtype="AutoFill:CreditCardPassword"
  7.          title="Credit Card Password"
  8.         style="width: 30em;"
  9.         persist="screenX screenY"
  10.         screenX="24" screenY="24"
  11.         onload="" 
  12.         onunload="shutDown();" 
  13.         onclose="return closeWindow(true);">      
  14.  
  15.    <script type="application/x-javascript" src="chrome://mozapps/content/autofill/ccard.js" />
  16.    
  17.   <groupbox maxwidth = "350">
  18.   <caption label="Enter Password"/>
  19.   <description>Your Credit Card information is protected. 
  20.   </description>
  21.   <grid>
  22.   <rows>
  23.       <!-- Validate Password-->
  24.         <row/> <!-- Password -->    
  25.         
  26.        
  27.   </rows>
  28.   
  29.   <columns>
  30.     <!-- Column 1 Labels-->    
  31.         <column width = "20"> 
  32.         <label value="Password:"  control="CardName" />
  33.             
  34.         </column>    
  35.         <column> 
  36.             <textbox id="CardPwd" maxlength="15" type="password" />  
  37.             
  38.         </column>      
  39.                       
  40.   </columns>  
  41. </grid> 
  42. </groupbox>
  43. <hbox align = "right">
  44. <grid>
  45.   <rows>
  46.  
  47.     <row/><!-- OK/CANCEL-->
  48.   </rows>
  49.   <columns>
  50.  
  51.     
  52.      <column minwidth = "30"> 
  53.       <button label="Forgot my Password..." oncommand="forgotPWD();" />
  54.       </column> 
  55.        
  56.     
  57.       <column> 
  58.       <button label="OK" oncommand="ccPasswordCheckStartUp();" />
  59.       </column>
  60.       
  61.       <column> 
  62.       <button label="Cancel" onclick="window.close();"/>
  63.       </column>
  64.  
  65.   </columns>
  66. </grid>
  67. </hbox>
  68. </window>