home *** CD-ROM | disk | FTP | other *** search
- <?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>