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 >
Wrap
Extensible Markup Language
|
2005-07-29
|
2KB
|
68 lines
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window id="autofillCCardPwd"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
windowtype="AutoFill:CreditCardPassword"
title="Credit Card Password"
style="width: 30em;"
persist="screenX screenY"
screenX="24" screenY="24"
onload=""
onunload="shutDown();"
onclose="return closeWindow(true);">
<script type="application/x-javascript" src="chrome://mozapps/content/autofill/ccard.js" />
<groupbox maxwidth = "350">
<caption label="Enter Password"/>
<description>Your Credit Card information is protected.
</description>
<grid>
<rows>
<!-- Validate Password-->
<row/> <!-- Password -->
</rows>
<columns>
<!-- Column 1 Labels-->
<column width = "20">
<label value="Password:" control="CardName" />
</column>
<column>
<textbox id="CardPwd" maxlength="15" type="password" />
</column>
</columns>
</grid>
</groupbox>
<hbox align = "right">
<grid>
<rows>
<row/><!-- OK/CANCEL-->
</rows>
<columns>
<column minwidth = "30">
<button label="Forgot my Password..." oncommand="forgotPWD();" />
</column>
<column>
<button label="OK" oncommand="ccPasswordCheckStartUp();" />
</column>
<column>
<button label="Cancel" onclick="window.close();"/>
</column>
</columns>
</grid>
</hbox>
</window>