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
/
datacardSaveNewDialog.xul
< prev
next >
Wrap
Extensible Markup Language
|
2005-07-29
|
1KB
|
39 lines
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<dialog id="datacardSaveNewDialog"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="Save New DataCard"
style="width: 250px;"
persist="screenX screenY"
onload="initSaveNewDialog();"
buttons="accept,cancel"
ondialogaccept="return onSaveNewAccept();"
ondialogcancel="">
<script type="application/x-javascript"
src="chrome://mozapps/content/autofill/datacardDialogs.js"/>
<script type="application/x-javascript"
src="chrome://mozapps/content/autofill/masterpassword.js" />
<description>Do you want to save the data in this form?</description>
<radiogroup id="datacardChoice" oncommand="enableDisable();">
<radio id="saveNew" value="saveNew" label="Save a New DataCard"/>
<vbox style="margin-left: 20px;">
<hbox align="center">
<label value="DataCard Name:"/>
<textbox id="datacardName" maxlength="20"/>
</hbox>
<checkbox id="passwordProtect"
label="Password Protect Sensitive Data"
oncommand="onPasswordProtect(this.checked);"/>
</vbox>
<!--<radio value="doNotSave" label="Do not save the data in this form."/>-->
<radio value="neverForThisSite" label="Never save form data for this site."/>
</radiogroup>
</dialog>