linea21-templates
[ class tree: linea21-templates ] [ index: linea21-templates ] [ all elements ]

Source for file login.php

Documentation is available at login.php

  1. <?php
  2. /**
  3.  * @package linea21.templates
  4.  * @subpackage admin
  5.  * @author linea21 <info@linea21.com>
  6.  * @version $id SVN
  7.  * @access public
  8.  * @license http://opensource.org/licenses/gpl-3.0.html
  9.  */
  10. echo '<?xml version="1.0" encoding="' CHARSET '"?>'END_LINE;
  11. ?>
  12. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  13.  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  14. <html xmlns="http://www.w3.org/1999/xhtml">
  15. <head>
  16. <title><?php echo _t('header','title')?></title>
  17. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET;?>" />
  18. <meta http-equiv="content-language" content="<?php echo LANGUAGE?>" />
  19. <link rel="icon" type="image/gif" href="<?php echo THEME_ADMIN_PATH?>images/favicon.gif" />
  20. <link type="text/css" rel="StyleSheet" href="<?php echo THEME_ADMIN_PATH?>css/admin_common.css" />
  21. <link type="text/css" rel="StyleSheet" href="<?php echo THEME_ADMIN_PATH?>css/admin_login.css" />
  22. </head>
  23. <body>
  24. <div id="content_auth">
  25.     <h1 style="display:none;"><?php echo _t('divers','auth')?></h1>
  26.     <img src="<?php echo THEME_ADMIN_PATH?>images/auth_logo.png" id="logo" alt="logo" />
  27.     <div id="title">
  28.         <p><?php echo _t('divers','title_login')?></p>
  29.     </div>
  30.     <div id="auth">
  31.         <p class="error_auth">
  32.         <?php
  33.         if(isset($auth_res)) echo $auth_res;
  34.         ?>
  35.         </p>
  36.     <form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
  37.         <div id="formu">
  38.             <label for="login"><?php echo _t('divers','login')?> : </label>
  39.             <input type="text" maxlength="20" class="loginfield" name="login" id="login" /><br /><br />
  40.             <label for="password"><?php echo _t('divers','password')?> : </label>
  41.             <input type="password" maxlength="20" class="loginfield" name="password" id="password" />
  42.             <div class="validation">
  43.             <input type="submit" value="<?php echo _t('btn','valid'?>" size="15" name="valid" id="valid" class="button" />
  44.             </div>
  45.         </div>
  46.     </form>
  47.     </div>
  48.     <p class="bottom">
  49.     <?php echo _t('divers','auth_mess1')?>
  50.     </p>
  51.     <p class="bottom">
  52.     <?php echo _t('divers','auth_mess2')?>
  53.     <a href="mailto:<?php echo SITE_CITY_MAIL?>" class="emphase"><?php echo SITE_CITY_MAIL?></a>
  54.     </p>
  55. </div>
  56. </body>
  57. </html>

Documentation generated on Fri, 16 Oct 2009 09:36:07 +0200 by phpDocumentor 1.4.1