2006-04-27 19:34:12 +02:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
|
|
<window class="dialog"
|
|
|
|
title="CASA"
|
|
|
|
id="casawindow"
|
|
|
|
orient="vertical"
|
|
|
|
autostretch="always"
|
|
|
|
onload="centerPrompt()"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script language="JavaScript" type="text/javascript" src="encode.js"></script>
|
|
|
|
<script language="JavaScript" type="text/javascript" src="casaOverlay.js"></script>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var button = document.getElementById("ok");
|
|
|
|
button.addEventListener('command', closeWin, true);
|
|
|
|
|
|
|
|
button = document.getElementById("notnow");
|
|
|
|
button.addEventListener('command', cancelWin, true);
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<!-- <radiogroup onclick="alert('test');">-->
|
|
|
|
|
|
|
|
<vbox color="red">
|
|
|
|
<image src="chrome://casa/skin/casa-logo.png"/>
|
|
|
|
<separator class="thin"/>
|
|
|
|
<separator class="thin"/>
|
|
|
|
<separator class="thin"/>
|
|
|
|
<groupbox align="center" orient="horizontal">
|
|
|
|
<hbox>
|
|
|
|
<vbox>
|
2006-07-28 21:34:44 +02:00
|
|
|
<radiogroup tabindex="3">
|
2006-04-27 19:34:12 +02:00
|
|
|
<radio id="CASA.RememberMe" selected="true" label="Remember my login"/>
|
2006-07-27 23:32:50 +02:00
|
|
|
<radio id="CASA.RemAndLogin" label="Remember and log me in automatically"/>
|
2006-04-27 19:34:12 +02:00
|
|
|
<radio id="CASA.Never" label="Never for this site"/>
|
|
|
|
</radiogroup>
|
|
|
|
</vbox>
|
|
|
|
</hbox>
|
|
|
|
</groupbox>
|
|
|
|
</vbox>
|
|
|
|
|
|
|
|
<hbox>
|
|
|
|
<spacer flex="1"/>
|
2006-07-28 21:34:44 +02:00
|
|
|
<button id="notnow" tabindex="4" accesskey="N" label="Not now" onclick="cancelWin()"/>
|
|
|
|
<button id="ok" tabindex="5" accesskey="O" label="Ok" onclick="closeWin()"/>
|
2006-04-27 19:34:12 +02:00
|
|
|
</hbox>
|
|
|
|
|
|
|
|
<spacer flex="1"/>
|
|
|
|
|
|
|
|
</window>
|