Newer
Older
Content-Type: text/html
[% IF cookie %]Set-Cookie: [% cookie %][% END %]
<?xml version="1.0" encoding="utf-8" ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-transitional.dtd">
<html xml:lang="[% iso639 = locale.match('^(.)(.)'); iso639.0; iso639.1 %]" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link type="text/css" href="resources/jquery.ui.1.11.1.css" rel="Stylesheet" />
<link rel="icon" type="image/png" href="/images/favicon.png" />
<link href="resources/jquery.steps.css" rel="stylesheet">
<script type="text/javascript" src="resources/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="resources/jquery.ui.1.11.1.min.js"></script>
<script type="text/javascript" src="resources/jquery.validate.1.13.0.min.js"></script>
<script type="text/javascript" src="resources/jquery.cookie-1.4.1.min.js"></script>
<script type="text/javascript" src="resources/jquery.steps.1.1.0.min.js"></script>
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<SCRIPT TYPE="text/javascript">
<!--
// To confirm on a link (A HREF)
function request_confirm_link(my_url, my_message) {
question = confirm(my_message);
if (question !="0") {
top.location = my_url;
}
}
function showhide(div){
var oDiv = document.getElementById(div);
if(oDiv.style.display == "none"){
oDiv.style.display = "block";
}else{
oDiv.style.display = "none";
}
}
function hide(div) {
var oDiv = document.getElementById(div);
oDiv.style.display = "none";
}
//-->
</SCRIPT>
<STYLE type="text/css"><!--
.login {float: left}
.menu {float: right}
.footer {text-align: center}
.prod {background-color: #028A34}
h1 {text-align: center}
li,dd {margin-left:10px;}
li.parametre {margin-bottom: 15px;}
dd.parametre {margin-bottom: 15px;}
div.important{border-style:solid;border-color:black;border-width:1px;background-color:#F5DEB3;padding:5px;}
.mandatory{color:#e00853;font-style:italic;font-weight:bold;margin:0 3px}
.notice{border:2px solid #05a;padding:5px 5px 5px 5px;margin:20px;}
#sp_entityid{width:100%;}
.scrollable{overflow-y: scroll;}
fieldset.scrollable{height: 75%;}
.wizard .content div.radio_inline input[type="radio"]{display: inline;}
--></STYLE>
<title> [% PROCESS 'templates/web/title.tt2.html' %] </title>
</head>
<body>
<div id="wrapper">
<div id="header">
<div id="bandeau">
<div class="logo">
<img alt="GEANT logo" width="150" src="/resources/geant_logo_rgb_300dpi.jpg"/>
</div>
<div class="connection">
</div>
<div class="title">
[% PROCESS 'templates/web/title.tt2.html' %]
</div>
</div>
<div id="content">
renater.salaun
committed
[% IF errors %]
[% PROCESS 'templates/web/errors.tt2.html' %]
</div>
[% ELSE %]
[% IF notifications %]
<div class="ui-widget">
[% PROCESS 'templates/web/notices.tt2.html' %]
</b></div>
[% END %] <!-- notifications -->
[% PROCESS 'templates/web/content.tt2.html' %]
renater.salaun
committed
[% END %] <!-- IF errors -->
<p>
[% IF dump %]
DUMP :<br>
[% USE Dumper %]
[% Dumper.dump_html(dump) %]
</p>
[% END %]
<div>
<hr>
<div align="middle">Test Account Manager [% conf.version %]</div>
</div>
</div>
</div>
</body>
</html>