PageRenderTime 46ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 0ms

/administrator/templates/bluestork/login.php

https://github.com/cosmocommerce/joomla
PHP | 97 lines | 80 code | 9 blank | 8 comment | 4 complexity | 89242d182d807ccfdc84cd29a6ef1253 MD5 | raw file
Possible License(s): Apache-2.0, LGPL-2.1
  1. <?php
  2. /**
  3. * @version $Id$
  4. * @package Joomla.Administrator
  5. * @subpackage templates.bluestork
  6. * @copyright Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
  7. * @license GNU General Public License version 2 or later; see LICENSE.txt
  8. */
  9. // no direct access
  10. defined('_JEXEC') or die;
  11. $app = &JFactory::getApplication();
  12. ?>
  13. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  14. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
  15. <head>
  16. <jdoc:include type="head" />
  17. <link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
  18. <link href="templates/<?php echo $this->template ?>/css/template.css" rel="stylesheet" type="text/css" />
  19. <?php if ($this->direction == 'rtl') : ?>
  20. <link href="templates/<?php echo $this->template ?>/css/template_rtl.css" rel="stylesheet" type="text/css" />
  21. <?php endif; ?>
  22. <!--[if IE 7]>
  23. <link href="templates/<?php echo $this->template ?>/css/ie7.css" rel="stylesheet" type="text/css" />
  24. <![endif]-->
  25. <!--[if lte IE 6]>
  26. <link href="templates/<?php echo $this->template ?>/css/ie6.css" rel="stylesheet" type="text/css" />
  27. <![endif]-->
  28. <?php if ($this->params->get('useRoundedCorners')) : ?>
  29. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/rounded.css" />
  30. <?php else : ?>
  31. <link rel="stylesheet" type="text/css" href="templates/<?php echo $this->template ?>/css/norounded.css" />
  32. <?php endif; ?>
  33. <script language="javascript" type="text/javascript">
  34. function setFocus() {
  35. document.login.username.select();
  36. document.login.username.focus();
  37. }
  38. </script>
  39. </head>
  40. <body onload="javascript:setFocus()">
  41. <div id="border-top" class="h_blue">
  42. <div>
  43. <div>
  44. <span class="title"><a href="index.php"><?php echo $this->params->get('showSiteName') ? $app->getCfg('sitename') : JText::_('Administration'); ?></a></span>
  45. </div>
  46. </div>
  47. </div>
  48. <div id="content-box">
  49. <div class="padding">
  50. <div id="element-box" class="login">
  51. <div class="t">
  52. <div class="t">
  53. <div class="t"></div>
  54. </div>
  55. </div>
  56. <div class="m wbg">
  57. <h1><?php echo JText::_('JOOMLA_ADMINISTRATION_LOGIN') ?></h1>
  58. <jdoc:include type="message" />
  59. <jdoc:include type="component" />
  60. <p><?php echo JText::_('DESCUSEVALIDLOGIN') ?></p>
  61. <p>
  62. <a href="<?php echo JURI::root(); ?>"><?php echo JText::_('RETURN_TO_SITE_HOME_PAGE') ?></a>
  63. </p>
  64. <div id="lock"></div>
  65. <div class="clr"></div>
  66. </div>
  67. <div class="b">
  68. <div class="b">
  69. <div class="b"></div>
  70. </div>
  71. </div>
  72. </div>
  73. <noscript>
  74. <?php echo JText::_('WARNJAVASCRIPT') ?>
  75. </noscript>
  76. <div class="clr"></div>
  77. </div>
  78. </div>
  79. <div id="border-bottom"><div><div></div></div>
  80. </div>
  81. <div id="footer">
  82. <p class="copyright">
  83. <a href="http://www.joomla.org">Joomla!</a>
  84. <?php echo JText::_('ISFREESOFTWARE') ?>
  85. </p>
  86. </div>
  87. </body>
  88. </html>