| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved. 4 * @license GNU/GPL, see LICENSE.php 5 * Joomla! is free software. This version may have been modified pursuant 6 * to the GNU General Public License, and as distributed it includes or 7 * is derivative of works licensed under the GNU General Public License or 8 * other free or open source software licenses. 9 * See COPYRIGHT.php for copyright notices and details. 10 */ 11 12 // no direct access 13 defined( '_JEXEC' ) or die( 'Restricted access' ); 14 ?> 15 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 16 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" > 17 <head> 18 <jdoc:include type="head" /> 19 20 <link rel="stylesheet" href="templates/system/css/system.css" type="text/css" /> 21 <link href="templates/<?php echo $this->template ?>/css/login.css" rel="stylesheet" type="text/css" /> 22 23 <?php if($this->direction == 'rtl') : ?> 24 <link href="templates/<?php echo $this->template ?>/css/login_rtl.css" rel="stylesheet" type="text/css" /> 25 <?php endif; ?> 26 27 <!--[if IE 7]> 28 <link href="templates/<?php echo $this->template ?>/css/ie7.css" rel="stylesheet" type="text/css" /> 29 <![endif]--> 30 31 <!--[if lte IE 6]> 32 <link href="templates/<?php echo $this->template ?>/css/ie6.css" rel="stylesheet" type="text/css" /> 33 <![endif]--> 34 35 <?php if($this->params->get('useRoundedCorners')) : ?> 36 <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/rounded.css" /> 37 <?php else : ?> 38 <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/norounded.css" /> 39 <?php endif; ?> 40 41 <script language="javascript" type="text/javascript"> 42 function setFocus() { 43 document.login.username.select(); 44 document.login.username.focus(); 45 } 46 </script> 47 </head> 48 <body onload="javascript:setFocus()"> 49 <div id="border-top" class="<?php echo $this->params->get('headerColor','green');?>"> 50 <div> 51 <div> 52 <span class="title"><?php echo $this->params->get('showSiteName') ? $mainframe->getCfg( 'sitename' ) : JText::_('Administration'); ?></span> 53 </div> 54 </div> 55 </div> 56 <div id="content-box"> 57 <div class="padding"> 58 <div id="element-box" class="login"> 59 <div class="t"> 60 <div class="t"> 61 <div class="t"></div> 62 </div> 63 </div> 64 <div class="m"> 65 66 <h1><?php echo JText::_('Joomla! Administration Login') ?></h1> 67 <jdoc:include type="message" /> 68 <jdoc:include type="component" /> 69 <p><?php echo JText::_('DESCUSEVALIDLOGIN') ?></p> 70 <p> 71 <a href="<?php echo JURI::root(); ?>"><?php echo JText::_('Return to site Home Page') ?></a> 72 </p> 73 <div id="lock"></div> 74 <div class="clr"></div> 75 </div> 76 <div class="b"> 77 <div class="b"> 78 <div class="b"></div> 79 </div> 80 </div> 81 </div> 82 <noscript> 83 <?php echo JText::_('WARNJAVASCRIPT') ?> 84 </noscript> 85 <div class="clr"></div> 86 </div> 87 </div> 88 <div id="border-bottom"><div><div></div></div> 89 </div> 90 <div id="footer"> 91 <p class="copyright"> 92 <a href="http://www.joomla.org" target="_blank">Joomla!</a> 93 <?php echo JText::_('ISFREESOFTWARE') ?> 94 </p> 95 </div> 96 </body> 97 </html>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Mar 28 15:54:07 2012 | Cross-referenced by PHPXref 0.7.1 |