Changeset 355

Show
Ignore:
Timestamp:
02/13/07 02:08:20 (2 years ago)
Author:
rats
Message:

changed design issues

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r354 r355  
    1212\_________________________________________________________________/ 
    1313 
     142007-02-13 Benedikt Heintel 
     15        - GUI: 
     16                * changed design issues 
     17 
    14182007-02-13 Laurent DECLERCQ 
    1519        - SETUP: 
     
    6973                        => Rename "php4.ini" "and php5.ini" in "php.ini" for all user 
    7074        - GUI: 
    71                 * fixed small bug 
     75                * fixed small bugs 
    7276                * Theme: omega_original fixed small bug 
    7377                * fixed error doc 
  • trunk/gui/include/system-message.php

    r288 r355  
    2121 
    2222function system_message($msg) { 
    23   global $cfg; 
     23       global $cfg; 
    2424 
    25   $theme_color = $cfg['USER_INITIAL_THEME_COLOR']; 
     25       $theme_color = $cfg['USER_INITIAL_THEME_COLOR']; 
    2626 
    27   $tpl = new pTemplate(); 
     27       $tpl = new pTemplate(); 
    2828 
    29   $tpl -> define('page', $cfg['LOGIN_TEMPLATE_PATH'].'/system-message.tpl'); 
     29        $tpl->define('page', $cfg['LOGIN_TEMPLATE_PATH'].'/system-message.tpl'); 
     30        $tpl->assign( 
     31                                        array( 
     32                                                'TR_SYSTEM_MESSAGE_PAGE_TITLE' => 'VHCS Error', 
     33                                                'THEME_COLOR_PATH' => "themes/$theme_color", 
     34                                                'THEME_CHARSET' => "UTF-8", 
     35                                                'TR_BACK' => tr('Back'), 
     36                                                'TR_ERROR_MESSAGE' => "Error Message", 
     37                                                'TR_TIME' => gettimestr(), 
     38                                                'TR_DATE' => getdatestr(), 
     39                                                'MESSAGE' => $msg 
     40                                                ) 
     41                                        ); 
    3042 
    31   $tpl -> assign(array('TR_SYSTEM_MESSAGE_PAGE_TITLE' => 'VHCS Error', 
    32                        'THEME_COLOR_PATH' => "themes/$theme_color", 
    33                        'THEME_CHARSET' => "UTF-8", 
    34                        'TR_ERROR_MESSAGE' => "Error Message", 
    35                        'TR_TIME' => gettimestr(), 
    36                        'TR_DATE' => getdatestr(), 
    37                        'MESSAGE' => $msg )); 
     43        $tpl->parse('PAGE', 'page'); 
     44        $tpl->prnt(); 
    3845 
    39         $tpl -> parse('PAGE', 'page'); 
    40  
    41   $tpl -> prnt(); 
    42  
    43   exit(0); 
    44  
    45   die(); 
     46        exit(0); 
     47        die(); 
    4648} 
    4749 
  • trunk/gui/index.php

    r333 r355  
    11<?php 
    2 //   ------------------------------------------------------------------------------- 
    3 //  |             VHCS(tm) - Virtual Hosting Control System                         | 
    4 //  |              Copyright (c) 2001-2006 by moleSoftware                                      | 
    5 //  |                   http://vhcs.net | http://www.molesoftware.com                                   | 
    6 //  |                                                                               | 
    7 //  | This program is free software; you can redistribute it and/or                 | 
    8 //  | modify it under the terms of the MPL General Public License                   | 
    9 //  | as published by the Free Software Foundation; either version 1.1              | 
    10 //  | of the License, or (at your option) any later version.                        | 
    11 //  |                                                                               | 
    12 //  | You should have received a copy of the MPL Mozilla Public License             | 
    13 //  | along with this program; if not, write to the Open Source Initiative (OSI)    | 
    14 //  | http://opensource.org | osi@opensource.org                                                                    | 
    15 //  |                                                                               | 
    16 //   ------------------------------------------------------------------------------- 
    17  
    18  
     2/** 
     3 *  VHCS ω (OMEGA) - Virtual Hosting Control System | Omega Version 
     4 * 
     5 *  @copyright  2001-2006 by moleSoftware GmbH 
     6 *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     7 *  @link               http://isp-control.net 
     8 *  @author             VHCS Team, Benedikt Heintel (2007) 
     9 * 
     10 *  @license 
     11 *  This program is free software; you can redistribute it and/or modify it under 
     12 *  the terms of the MPL General Public License as published by the Free Software 
     13 *  Foundation; either version 1.1 of the License, or (at your option) any later 
     14 *  version. 
     15 *  You should have received a copy of the MPL Mozilla Public License along with 
     16 *  this program; if not, write to the Open Source Initiative (OSI) 
     17 *  http://opensource.org | osi@opensource.org 
     18 * 
     19 **/ 
    1920 
    2021include 'include/vhcs-lib.php'; 
  • trunk/gui/themes/omega_original/css/vhcs.css

    r333 r355  
    11body { 
    2         margin-left: 0px; 
    3         margin-top: 0px; 
    4         margin-right: 0px; 
    5         margin-bottom: 0px; 
    6         background-color:#ffffff; 
    7  
    8 
    9  
    10  
    11 a.link {color:#000099;text-decoration:underline;font-weight: normal;} 
    12 a.link:link {color:#000099;text-decoration:underline;font-weight: normal;} 
    13 a.link:visited {color:#000099; text-decoration:underline; font-weight:normal} 
    14 a.link:hover {color:#000000; text-decoration: none;} 
    15 a.link:active {color:#000000;text-decoration:none;} 
    16  
    17  
    18 a.menu { 
    19         font-family: arial, helvetica, sans-serif; 
    20         font-size: 9pt; 
    21         color: #000; 
    22         font-weight: bold; 
    23         font-variant:small-caps; 
    24 
    25 a.menu:link { 
    26         color: #000000; 
    27         text-decoration: none; 
    28 
    29 a.menu:visited { 
    30         color: #000000; 
    31         text-decoration: none; 
    32 
    33 a.menu:hover { 
    34         color: #333333; 
    35         text-decoration: none; 
    36 
    37 a.menu:active { 
    38         color: #333333; 
    39         text-decoration: none; 
    40 
    41  
    42 /*  menu active begin */ 
    43  
    44 a.menu_active { 
    45         font-family: arial, helvetica, sans-serif; 
    46         font-size: 9pt; 
    47         color: #000000; 
    48         font-weight: bold; 
    49         font-variant:small-caps; 
    50 
    51 a.menu_active:link { 
    52         color: #000; 
    53         text-decoration: none; 
    54 
    55 a.menu_active:visited { 
    56         color: #000; 
    57         text-decoration: none; 
    58 
    59 a.menu_active:hover { 
    60         color: #333333; 
    61         text-decoration: none; 
    62 
    63 a.menu_active:active { 
    64         color: #333333; 
    65         text-decoration: none; 
    66 
    67  
    68 /*  menu active end*/ 
    69  
    70  
    71  
    72 /*  submenu begin */ 
     2        margin-left:            0px; 
     3        margin-top:             0px; 
     4        margin-right:           0px; 
     5        margin-bottom:          0px; 
     6        background-color:       #ffffff; 
     7
     8 
     9/*********************************** LINKS ************************************/ 
     10a.link, a.link:link, a.link:visited { 
     11        color:                          #000099; 
     12        text-decoration:        underline; 
     13        font-weight:            normal; 
     14
     15 
     16a.link:hover, a.link:active, a.link:focus { 
     17        color:                          #000000; 
     18        text-decoration:        none; 
     19
     20 
     21a.menu, a.menu:link, a.menu:visited { 
     22        font-family:            arial, helvetica, sans-serif; 
     23        font-size:                      9pt; 
     24        color:                          #000000; 
     25        font-weight:            bold; 
     26        font-variant:           small-caps; 
     27
     28 
     29a.menu:hover, a.menu:active, a.menu:focus { 
     30        color:                          333333; 
     31        text-decoration:        none; 
     32
     33 
     34a.menu_active, a.menu_active:link, a.menu_active:visited  { 
     35        font-family:            arial, helvetica, sans-serif; 
     36        font-size:                      9pt; 
     37        color:                          #000000; 
     38        font-weight:            bold; 
     39        font-variant:           small-caps; 
     40
     41 
     42a.menu_active:hover, a.menu_active:active, a.menu_active:focus { 
     43        color:                          #333333; 
     44        text-decoration:        none; 
     45
    7346 
    7447a.submenu { 
    75         margin-top: 0px; 
    76         display: block; 
    77         font-family:geneva, arial, helvetica, sans-serif; 
    78         font-weight:bold; 
    79         font-size: 11px; 
    80         vertical-align: middle; 
    81         color: #ffffff; 
    82         height: 25px; 
    83         padding: 1px; 
    84         padding-left:20px; 
    85         padding-top:5px; 
    86         white-space: nowrap; 
    87         text-decoration:none; 
    88 
    89 a.submenu:link { 
    90         color: #ffffff; 
    91         background-image: url(../images/top/link_bg.jpg); 
    92         vertical-align: middle; 
    93 
    94 a.submenu:visited { 
    95         color: #ffffff; 
    96         background-image: url(../images/top/link_bg.jpg); 
    97         vertical-align: middle; 
    98 
    99 a.submenu:hover { 
    100         color: #f4dc6b; 
    101         background-image: url(../images/top/link_hover_bg.jpg); 
    102         vertical-align: middle; 
    103 
    104 a.submenu:active { 
    105         color: #f4dc6b; 
    106         background-image: url(../images/top/link_hover_bg.jpg); 
    107         vertical-align: middle; 
    108 
    109  
    110 a.submenu:focus { 
    111         color: #f4dc6b; 
    112         background-image: url(../images/top/link_hover_bg.jpg); 
    113         vertical-align: middle; 
    114 
    115  
    116 /*  submenu end*/ 
    117  
    118 /*  submenu begin */ 
    119  
    120 a.logout { 
    121         font-family:geneva, arial, helvetica, sans-serif; 
    122         font-weight:bold; 
    123         font-size: 10px; 
    124         color: #ffffff; 
    125         height: 18px; 
    126         padding: 1px; 
    127         padding-left:5px; 
    128         white-space: nowrap; 
    129         text-decoration:none; 
    130 
    131 a.logout:link { 
    132         color: #ffffff; 
    133 
    134 a.logout:visited { 
    135         color: #ffffff; 
    136 
    137 a.logout:hover { 
    138         color: #f4dc6b; 
    139 
    140 a.logout:active { 
    141         color: #f4dc6b; 
    142 
     48        margin-top:             0px; 
     49        display:                        block; 
     50        font-family:            geneva, arial, helvetica, sans-serif; 
     51        font-weight:            bold; 
     52        font-size:                      11px; 
     53        vertical-align:         middle; 
     54        color:                          #ffffff; 
     55        height:                         25px; 
     56        padding:                        1px; 
     57        padding-left:           20px; 
     58        padding-top:            5px; 
     59        white-space:            nowrap; 
     60        text-decoration:        none; 
     61
     62 
     63a.submenu:link, a.submenu:visited { 
     64        color:                          #ffffff; 
     65        background-image:       url(../images/top/link_bg.jpg); 
     66        vertical-align:         middle; 
     67
     68 
     69a.submenu:hover, a.submenu:active, a.submenu:focus { 
     70        color:                          #f4dc6b; 
     71        background-image:       url(../images/top/link_hover_bg.jpg); 
     72        vertical-align:         middle; 
     73
     74 
     75a.logout, a.logout:link, a.logout:visited { 
     76        font-family:            arial, helvetica, sans-serif; 
     77        font-weight:            bold; 
     78        font-size:                      10px; 
     79        color:                          #ffffff; 
     80        height:                         18px; 
     81        padding:                        1px; 
     82        padding-left:           5px; 
     83        white-space:            nowrap; 
     84        text-decoration:        none; 
     85
     86 
     87a.logout:hover, a.logout:active, a.logout:focus { 
     88        color:                          #f4dc6b; 
     89
     90 
     91a.login, a.login:link, a.login:visited { 
     92        font-family:            geneva, arial, helvetica, sans-serif; 
     93        font-size:                      11px; 
     94        color:                          #3b73ca; 
     95        white-space:            nowrap; 
     96        text-decoration:        underline; 
     97
     98 
     99a.login:hover, a.login:active, a.login:hover { 
     100        color:                          #000000; 
     101        text-decoration:        none; 
     102
     103 
     104/*********************************** OTHER ************************************/ 
    143105 
    144106.logoutbutton { 
    145107        padding-left:15px; 
    146108} 
    147 /*  submenu end*/ 
    148109 
    149110.title { 
    150         font-family: geneva, arial, helvetica, sans-serif; 
    151         font-size: 11pt; 
    152         font-weight: bold; 
    153         font-variant:small-caps; 
    154         text-decoration: none; 
    155         border-bottom:#cccccc solid 1px; 
     111        font-family:           geneva, arial, helvetica, sans-serif; 
     112        font-size:                     11pt; 
     113        font-weight:           bold; 
     114        font-variant:          small-caps; 
     115        text-decoration:       none; 
     116        border-bottom:         #cccccc solid 1px; 
    156117} 
    157118 
    158119.titlemenu { 
    159         font-family:  geneva, arial, helvetica, sans-serif; 
    160         font-size: 11pt; 
    161         font-weight:bold; 
    162         font-variant:small-caps; 
    163         color:#ffffff; 
    164         padding-left:5px; 
    165         vertical-align:text-top; 
     120        font-family:           geneva, arial, helvetica, sans-serif; 
     121        font-size:                     11pt; 
     122        font-weight:           bold; 
     123        font-variant:          small-caps; 
     124        color:                         #ffffff; 
     125        padding-left:          5px; 
     126        vertical-align:                text-top; 
    166127} 
    167128 
    168129.bottom { 
    169         color: #ffffff; 
    170         font-family: arial, helvetica, sans-serif; 
    171         font-size: 7pt; 
    172         background-image: url(../images/top/menu_bg.jpg); 
    173 
     130        color:                          #ffffff; 
     131        font-family:            arial, helvetica, sans-serif; 
     132        font-size:                      7pt; 
     133        background-image:       url(../images/top/menu_bg.jpg); 
     134
     135 
    174136td { 
    175         font-family: arial, helvetica, sans-serif; 
    176         font-size: 12px; 
     137        font-family:           arial, helvetica, sans-serif; 
     138        font-size:                     12px; 
    177139} 
    178140 
    179141td.content { 
    180         font-size: 12px; 
    181         color: #000000; 
    182         white-space: nowrap; 
    183         background: #efefef; 
    184         white-space: nowrap; 
    185         height: 22px; 
    186         padding: 2px; 
     142        font-size:                     12px; 
     143        color:                                 #000000; 
     144        white-space:           nowrap; 
     145        background:            #efefef; 
     146        white-space:           nowrap; 
     147        height:                        22px; 
     148        padding:                       2px; 
    187149} 
    188150 
    189151td.content2 { 
    190         font-size: 12px; 
    191         color: #000000; 
    192         white-space: nowrap; 
    193         background: #efefef; 
    194         white-space: nowrap; 
    195         height: 22px; 
    196         padding: 2px; 
     152        font-size:                     12px; 
     153        color:                                 #000000; 
     154        white-space:           nowrap; 
     155        background:                    #efefef; 
     156        white-space:           nowrap; 
     157        height:                        22px; 
     158        padding:                       2px; 
    197159} 
    198160 
    199161td.content3 { 
    200         font-size: 12px; 
    201         color: #000000; 
    202         white-space: nowrap; 
    203         background: #efefef; 
    204         white-space: nowrap; 
    205         height: 30px; 
    206         padding: 2px; 
     162        font-size:                     12px; 
     163        color:                                 #000000; 
     164        white-space:           nowrap; 
     165        background:            #efefef; 
     166        white-space:           nowrap; 
     167        height:                        30px; 
     168        padding:                       2px; 
    207169} 
    208170 
    209171td.content4 { 
    210         font-size: 12px; 
    211         color: #333333; 
    212         white-space: nowrap; 
    213         background: #dddddd; 
    214         white-space: nowrap; 
    215         height: 22px; 
    216         padding: 2px; 
    217 
    218  
    219 .textinput 
    220 
    221   background-color: white; 
    222   border-style: solid; 
    223   border-width: 1; 
    224   border-color: #cccccc; 
    225   font-family: verdana; 
    226   font-size: 8pt; 
    227   height: 21px; 
    228   margin: 2px; 
    229 
    230  
    231 .textinput2 
    232 
    233   background-color: white; 
    234   border-style: solid; 
    235   border-width: 1; 
    236   border-color: #cccccc; 
    237   font-family: verdana; 
    238   font-size: 8pt; 
    239   margin: 2px; 
    240 
    241  
    242 .button 
    243 
    244         font-family: arial, helvetica, sans-serif; 
    245         height: 21px; 
    246         font-size: 12px; 
    247         color: #000000; 
    248         text-align: center; 
    249         background-repeat: repeat-x; 
    250 
    251 .login_button 
    252 
    253         font-family: arial, helvetica, sans-serif; 
    254         height: 21px; 
    255         font-size: 12px; 
    256         color: #ffffff; 
    257         text-align: center; 
    258         background-color:#323232; 
    259 
     172        font-size:                      12px; 
     173        color:                          #333333; 
     174        white-space:            nowrap; 
     175        background:             #dddddd; 
     176        white-space:            nowrap; 
     177        height:                         22px; 
     178        padding:                        2px; 
     179
     180 
     181.textinput { 
     182  background-color:     white; 
     183  border-style:                 solid; 
     184  border-width:                 1; 
     185  border-color:                 #cccccc; 
     186  font-family:                  verdana; 
     187  font-size:                    8pt; 
     188  height:                               21px; 
     189  margin:                               2px; 
     190
     191 
     192.textinput2 { 
     193  background-color:     white; 
     194  border-style:                 solid; 
     195  border-width:                 1; 
     196  border-color:                 #cccccc; 
     197  font-family:                  verdana; 
     198  font-size:                    8pt; 
     199  margin:                               2px; 
     200
     201 
     202.button { 
     203        font-family:            arial, helvetica, sans-serif; 
     204        height:                         21px; 
     205        font-size:                      12px; 
     206        color:                          #ffffff; 
     207        text-align:             center; 
     208        background-color:       #323232; 
     209        background-image:       url(../images/button.jpg); 
     210        background-repeat:      repeat-x; 
     211        border:                         1px solid #323232; 
     212
     213 
    260214.login_bottom { 
    261         font-size: 10px; 
    262         color: #99a0b1; 
    263 
     215        font-size:                      10px; 
     216        color:                          #99a0b1; 
     217
     218 
    264219.login_text { 
    265         color: #334163; 
     220        color:                                 #334163; 
    266221} 
    267222 
    268223.login_time { 
    269         color: #99a0b1; 
    270         font-size: 24px; 
    271         font-weight: bold; 
    272 
    273  
    274 a.login { 
    275         font-family: geneva, arial, helvetica, sans-serif; 
    276         font-size: 11px; 
    277         color: #3b73ca; 
    278         white-space: nowrap; 
    279         text-decoration: underline; 
    280 
    281  
    282 a.login:link { 
    283         color: #3b73ca; 
    284         text-decoration: underline; 
    285 
    286  
    287 a.login:visited { 
    288         color: #3b73ca; 
    289         text-decoration: underline; 
    290 
    291  
    292 a.login:hover { 
    293         color: #000000; 
    294         text-decoration: none; 
    295 
    296  
    297 a.login:active { 
    298         color: #000000; 
    299         text-decoration: none; 
    300 
     224        color:                          #99a0b1; 
     225        font-size:                      24px; 
     226        font-weight:            bold; 
     227
  • trunk/gui/themes/omega_original/index.tpl

    r333 r355  
    5353    <td colspan="3">&nbsp;</td> 
    5454    <td colspan="2" align="right">&nbsp;</td> 
    55     <td align="right"><input type="submit" name="Submit" class="login_button" value="{TR_LOGIN}"></td> 
     55    <td align="right"><input type="submit" name="Submit" class="button" value="    {TR_LOGIN}    "></td> 
    5656    <td align="right">&nbsp;</td> 
    5757  </tr> 
  • trunk/gui/themes/omega_original/lostpassword.tpl

    r319 r355  
    5757          <td background="{THEME_COLOR_PATH}/images/login/content_line.gif">&nbsp;</td> 
    5858          <td>&nbsp;</td> 
    59           <td align="left" valign="bottom"><input type="submit" name="Submit" class="login_button" value="   {TR_SEND}   "></td> 
     59          <td align="left" valign="bottom"><input type="submit" name="Submit" class="button" value="   {TR_SEND}   "></td> 
    6060          <td align="left" valign="bottom"><a class="login" href="index.php">{TR_BACK}</a></td> 
    6161         </tr> 
    6262        </table> 
    63         </form>         
     63        </form> 
    6464        </td> 
    6565    </tr> 
     
    6767    <td></td> 
    6868    </tr> 
    69    
     69 
    7070  </table> 
    7171 
  • trunk/gui/themes/omega_original/servicemode.tpl

    r319 r355  
    11<html> 
    2 <head> 
    3        <title>{TR_PAGE_TITLE}</title> 
    4        <meta http-equiv="Content-Type" content="text/html; charset={THEME_CHARSET}"> 
    5        <meta name="robots" content="noindex"> 
    6        <meta name="robots" content="nofollow"> 
    7        <link href="themes/omega_original/css/vhcs.css" rel="stylesheet" type="text/css"> 
    8        <script type="text/javascript" src="themes/omega_original/css/vhcs.js"></script> 
    9 </head> 
    10 <body text="#000000"> 
    11 <table width="100%" height="100% "align="center" cellpadding="0" cellspacing="0"> 
    12   <tr> 
     2 <head> 
     3  <title>{TR_PAGE_TITLE}</title> 
     4  <meta http-equiv="Content-Type" content="text/html; charset={THEME_CHARSET}"> 
     5  <meta name="robots" content="noindex"> 
     6  <meta name="robots" content="nofollow"> 
     7  <link href="themes/omega_original/css/vhcs.css" rel="stylesheet" type="text/css"> 
     8  <script type="text/javascript" src="themes/omega_original/css/vhcs.js"></script> 
     9 </head> 
     10 <body text="#000000"> 
     11  <table width="100%" height="100% "align="center" cellpadding="0" cellspacing="0"> 
     12  <tr> 
    1313    <td> 
    14 <table width="453" style="border:solid 1px #CCCCCC;"align="center" cellpadding="0" cellspacing="0"> 
    15   <tr> 
    16     <td> 
    17 <table width="453" border="0" align="center" cellpadding="0" cellspacing="0"> 
    18   <tr> 
    19     <td width="453" height="69" background="themes/omega_original/images/login/login_top.jpg">&nbsp;</td> 
    20   </tr> 
    21   <tr> 
    22     <td> 
    23 <table width="453" border="0" cellpadding="0" cellspacing="1"> 
    24           <tr> 
    25             <td align="center" valign="middle" bgcolor="#FFFFFF"><strong><font color="#FF0000">&nbsp;{TR_MESSAGE}&nbsp;</font></strong></td> 
    26           </tr> 
    27           <tr> 
    28             <td align="right"><a class="login" href="index.php?admin=1" target="_self">{TR_ADMINLOGIN}</a></td> 
    29           </tr> 
     14     <table width="453" style="border:solid 1px #CCCCCC;"align="center" cellpadding="0" cellspacing="0"> 
     15      <tr> 
     16       <td> 
     17        <table width="453" border="0" align="center" cellpadding="0" cellspacing="0"> 
     18         <tr> 
     19          <td width="453" height="69" background="themes/omega_original/images/login/login_top.jpg">&nbsp;</td> 
     20         </tr> 
     21         <tr> 
     22          <td> 
     23           <table width="453" border="0" cellpadding="0" cellspacing="1"> 
     24            <tr> 
     25             <td align="center" valign="middle" bgcolor="#FFFFFF"><strong><font color="#FF0000">&nbsp;{TR_MESSAGE}&nbsp;</font></strong></td> 
     26            </tr> 
     27            <tr> 
     28             <td align="right"><a class="login" href="index.php?admin=1" target="_self">{TR_ADMINLOGIN}</a></td> 
     29            </tr> 
     30           </table> 
     31          </td> 
     32         </tr> 
     33         <tr> 
     34          <td>&nbsp;</td> 
     35         </tr> 
    3036        </table> 
    31         </td> 
    32     </tr> 
    33   <tr> 
    34     <td></td> 
    35     </tr> 
    36    
     37       </td> 
     38      </tr> 
     39     </table> 
     40    </td> 
     41   </tr> 
    3742  </table> 
    38  
    39 </td> 
    40   </tr> 
    41 </table> 
    42 </td> 
    43   </tr> 
    44 </table> 
    45 </body> 
     43 </body> 
    4644</html> 
  • trunk/gui/themes/omega_original/system-message.tpl

    r330 r355  
    11<html> 
    2 <head> 
    3 <title>{TR_SYSTEM_MESSAGE_PAGE_TITLE}</title> 
     2 <head> 
     3 <title>{TR_SYSTEM_MESSAGE_PAGE_TITLE}</title> 
    44  <meta name="robots" content="noindex"> 
    55  <meta name="robots" content="nofollow"> 
    6 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    7 <link href="/vhcs2/themes/omega_original/css/vhcs.css" rel="stylesheet" type="text/css"> 
    8 <script type="text/javascript" src="/vhcs2/themes/omega_original/css/vhcs.js"></script> 
    9 </head> 
    10 <body text="#000000"> 
    11 <table width="100%" height="100% "align="center" cellpadding="0" cellspacing="0"> 
    12   <tr> 
     6  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
     7  <link href="/vhcs2/themes/omega_original/css/vhcs.css" rel="stylesheet" type="text/css"> 
     8  <script type="text/javascript" src="/vhcs2/themes/omega_original/css/vhcs.js"></script> 
     9 </head> 
     10 <body text="#000000"> 
     11  <table width="100%" height="100% "align="center" cellpadding="0" cellspacing="0"> 
     12  <tr> 
    1313    <td> 
    14 <table width="453" style="border:solid 1px #CCCCCC;"align="center" cellpadding="0" cellspacing="0"> 
    15   <tr> 
    16     <td> 
    17 <table width="453" border="0" align="center" cellpadding="0" cellspacing="0"> 
    18   <tr> 
    19     <td width="453" height="69" background="themes/omega_original/images/login/login_top.jpg">&nbsp;</td> 
    20   </tr> 
    21   <tr> 
    22     <td> 
    23 <table width="453" border="0" cellpadding="0" cellspacing="1"> 
    24           <tr> 
    25             <td align="center" valign="middle" bgcolor="#FFFFFF"><strong><font color="#FF0000">&nbsp;{MESSAGE}&nbsp;</font></strong></td> 
    26           </tr> 
     14     <table width="453" style="border:solid 1px #CCCCCC;"align="center" cellpadding="0" cellspacing="0"> 
     15      <tr> 
     16       <td> 
     17        <table width="453" border="0" align="center" cellpadding="0" cellspacing="0"> 
     18         <tr> 
     19          <td width="453" height="69" background="themes/omega_original/images/login/login_top.jpg">&nbsp;</td> 
     20         </tr> 
     21         <tr> 
     22          <td> 
     23           <table width="453" border="0" cellpadding="0" cellspacing="1"> 
     24            <tr> 
     25             <td align="center" valign="middle" bgcolor="#FFFFFF"><strong><font color="#FF0000">&nbsp;{MESSAGE}&nbsp;</font></strong></td> 
     26            </tr> 
     27            <tr> 
     28             <td align="right"><a class="login" href="index.php" target="_self">{TR_BACK}</a></td> 
     29            </tr> 
     30           </table> 
     31              </td> 
     32         </tr> 
     33         <tr> 
     34          <td>&nbsp;</td> 
     35         </tr> 
    2736        </table> 
    28        </td> 
    29     </tr> 
    30   <tr
    31     <td></td> 
    32     </tr> 
     37       </td> 
     38      </tr> 
     39     </table
     40    </td> 
     41   </tr> 
    3342  </table> 
    34 </td> 
    35   </tr> 
    36 </table> 
    37 </td> 
    38   </tr> 
    39 </table> 
    40 </body> 
     43 </body> 
    4144</html>