Corrected error in file permissions
[CGIscriptor.git] / JavaScript / LoginPage.js
blob4818c519b65ca063e35620c4a5f90388d5125510
1 /*
2  *  LICENSE
3  *  
4  *  This program is free software; you can redistribute it and/or
5  *  modify it under the terms of the GNU General Public License
6  *  as published by the Free Software Foundation; either version 2
7  *  of the License, or (at your option) any later version.
8  *  
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *  
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place - Suite 330,
17  *  Boston, MA  02111-1307, USA.
18  * 
19  *  Copyright 2012-2013 Rob van Son 
20  *  email: R.J.J.H.vanSon@gmail.com 
21  *  NKI-AVL Amsterdam
22  */
23 <SCRIPT TYPE="text/ssperl" SRC="./JavaScript/CGIscriptorSession.js"></SCRIPT>
25 // Remove EVERYTHING from Login window
26 window.onload = function() {
27         if(window.location.search)window.location.search = "";
28         var warning = document.getElementById('WARNING');
29         if(sessionStorage == null) warning.innerHTML = "Storage not supported by the browser: Upgrade your browser or set dom.storage.enabled";
30         else {
31                 warning.style.color = "Black";
32                 warning.innerHTML = "";
33         };
34         clear_persistent_data ();
35         
36         // UNCOMMENT for use in a local version of the Private/Login.html web page.
37         // getLoginData();
40 <SCRIPT TYPE="text/ssperl" SRC="./JavaScript/sha.js"></SCRIPT>