Project

General

Profile

Download (3.78 KB) Statistics
| Branch: | Revision:

git_sitools_idoc / flarecast / workspace / client-public-3.0 / html / login.html @ master

1
<!--
2
-- Copyright 2011, 2012 CNES - CENTRE NATIONAL d'ETUDES SPATIALES
3
-- 
4
-- This file is part of SITools2.
5
-- 
6
-- SITools2 is free software: you can redistribute it and/or modify
7
-- it under the terms of the GNU General Public License as published by
8
-- the Free Software Foundation, either version 3 of the License, or
9
-- (at your option) any later version.
10
-- 
11
-- SITools2 is distributed in the hope that it will be useful,
12
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
13
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
-- GNU General Public License for more details.
15
-- 
16
-- You should have received a copy of the GNU General Public License
17
-- along with SITools2.  If not, see <http://www.gnu.org/licenses/>.
18
-->
19
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
20
"http://www.w3.org/TR/html4/loose.dtd">
21

    
22
<html>
23

    
24
  <head>
25

    
26
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
27
    <title>SITOOLS Login</title>
28

    
29
    <!-- Commom css -->
30
        <!--  <link rel="stylesheet" type="text/css" href="/sitools/cots/extjs/resources/css/ext-all.css" /> -->
31
    <link rel="stylesheet" type="text/css" href="/sitools/cots/extjs/resources/css/ext-all.css" />
32

    
33
           <!--  ext.ux  -->
34
       
35
    <link rel="stylesheet" type="text/css" href="/sitools/common/res/css/statusbar.css" />
36
    <!-- Sitools specific css -->
37
    <link rel="stylesheet" type="text/css" href="res/css/main.css" />
38
    <link rel="stylesheet" type="text/css" href="res/css/commons.css" />
39
    <link rel="stylesheet" type="text/css" href="res/css/icons.css" />
40
    <link rel="stylesheet" type="text/css" href="/sitools/common/res/css/main.css">
41
   
42

    
43
    <!-- First of javascript includes must be an adapter... -->
44
    <!--script type="text/javascript" src="/sitools/cots/extjs/adapter/ext/ext-base-debug.js"></script-->
45
    <script type="text/javascript" src="/sitools/cots/extjs/adapter/ext/ext-base.js"></script>
46

    
47
    <!-- Need the Ext itself, either debug or production version. -->
48
    <script type="text/javascript" src="/sitools/cots/extjs/ext-all-debug.js"></script>
49
    <!--script type="text/javascript" src="/sitools/cots/extjs/ext-all.js"></script-->
50

    
51
    <!-- Need in debug mode, to remove in production version. -->
52
    <script type="text/javascript" src="/sitools/common/js/utils/xpath.js"></script>
53
    <script type="text/javascript" src="/sitools/common/js/debug.js"></script>
54

    
55
    <!-- Commom widget and functions : small components, used in many components -->
56
    <script type="text/javascript" src="/sitools/common/js/env.js"></script>
57
    <script type="text/javascript" src="/sitools/common/js/widgets/login.js"></script>
58
    <!-- Sitools specific javascript appli files -->
59
    <script type="text/javascript" src="js/def.js"></script>
60
    <script type="text/javascript" src="js/id.js"></script>
61
    <script type="text/javascript" src="js/gui.js"></script>
62
    <script type="text/javascript" src="js/tools.js"></script>
63
    <script type="text/javascript" src="/sitools/common/js/crypto/base64.js"></script>
64
    <script type="text/javascript" src="/sitools/common/js/utils/console.js"></script>
65
    <script type="text/javascript" src="/sitools/common/js/widgets/statusbar.js"></script>
66

    
67
        <link rel="shortcut icon" href="/sitools/common/res/images/icons/logo_fav_icone.ico" type="image/x-icon">
68
        
69
  </head>
70

    
71
  <body>
72
    <script type="text/javascript">
73
                Ext.onReady(function(){
74
                        i18n.load('/sitools/common/res/i18n/en/gui.properties', function() {
75
                                Ext.MessageBox.buttonText.yes = i18n.get('label.yes');
76
                              Ext.MessageBox.buttonText.no = i18n.get('label.no');
77
                                Ext.QuickTips.init();
78
                                new sitools.widget.Login({
79
                                defurl:'/sitools/client-user/index.html',
80
                                url:'/sitools/login?media=json', 
81
                                chooseLocation : true 
82
                        }).show();
83
                    });
84
        });
85
    </script>
86
  </body>
87
</html>