Creating pop up window while logging into Jazz
Hi,
Here is my requirement - Whenever we try to login to our jazz environment, after entering the login password, I want a pop-up window to come up with 'I Agree' button.
I hope it has to use 'Themes'.
1. Is it possible to get this done by using plain java script like below, which opens a pop-up onload -
===================================================
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script>
function openWin()
{
myWindow=window.open('','','width=400,height=400');
myWindow.document.writeln("Usage of the tools is bound to the Terms and Conditions");
myWindow.document.write("<p><center><input type=checkbox></input><input type=button value='I agree' ></Input></center></p>");
myWindow.focus();
}
</script>
</head>
<body onload="openWin()">
</body>
</html>
=============================
If I save this as a html file inside html folder, zip and upload it in Themes, it does not seem to invoke a pop-up while previewing.
2. Does this require dojo or dijit skills ?
Any info on getting this done would be of great help.
Comments
Ashok Karuppiah
Aug 21 '13, 9:03 a.m.Simon Eickel
Aug 23 '13, 4:58 a.m.