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