source: alternc/trunk/bureau/admin/head.php @ 4338

Revision 4338, 2.8 KB checked in by fufroma, 4 days ago (diff)

Special Vinci: plus de <table> \o/

Line 
1<?php
2/*
3 ----------------------------------------------------------------------
4 AlternC - Web Hosting System
5 Copyright (C) 2000-2012 by the AlternC Development Team.
6 https://alternc.org/
7 ----------------------------------------------------------------------
8 LICENSE
9
10 This program is free software; you can redistribute it and/or
11 modify it under the terms of the GNU General Public License (GPL)
12 as published by the Free Software Foundation; either version 2
13 of the License, or (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 GNU General Public License for more details.
19
20 To read the license please visit http://www.gnu.org/copyleft/gpl.html
21 ----------------------------------------------------------------------
22 Purpose of file: Main header of all html files
23 ----------------------------------------------------------------------
24*/
25if (!$charset) $charset="UTF-8";
26@header("Content-Type: text/html; charset=$charset");
27?>
28<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
29<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $lang; ?>" lang="<?php echo $lang; ?>">
30<head>
31<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
32<title><?php __("AlternC Control Panel"); ?></title>
33
34<link rel="stylesheet" href="styles/style.css" type="text/css" />
35<link rel="stylesheet" href="js/jquery_ui/css/smoothness/jquery-ui-1.8.23.custom.css" type="text/css" />
36
37<link rel="stylesheet" href="styles/style-empty.css" type="text/css" title="Default - Desktop TNG"/>
38<link rel="alternate stylesheet" href="styles/style-bluedesktop10.css" type="text/css" title="Blue Desktop 1.0" />
39<link rel="alternate stylesheet" href="styles/style-hw.css" type="text/css" title="Halloween" />
40
41<link rel="Shortcut Icon" href="favicon.ico" type="image/ico" />
42<link rel="icon" href="favicon.ico" type="image/ico" />
43
44<script src="js/alternc.js" type="text/javascript" ></script>
45<script src="js/jquery.min.js" type="text/javascript"></script>
46<script src="js/jquery_ui/js/jquery-ui-1.8.23.custom.min.js" type="text/javascript"></script>
47
48</head>
49<body>
50<?
51
52if ($isinvited && isset($oldid) && !empty($oldid) && $oldid!=$cuid ) {
53  echo "<div align=center><p class='error'>";
54  __("Administrator session. you may <a href='adm_login.php'>return to your account</a> or <a href='adm_cancel.php'>cancel this feature</a>.");
55  if ($oldid == 2000) echo ' '._("You can also <a href='adm_update_domains.php'>apply changes</a>."); // Yes, hardcoded uid. We will rewrite permissions another day
56  echo "</p></div>";
57}
58?>
59<div id="global">
60<div id="menu"><?php include_once("menu.php"); ?></div>
61<div id="content">
Note: See TracBrowser for help on using the repository browser.