diff options
Diffstat (limited to 'shell/index.php')
-rw-r--r-- | shell/index.php | 62 |
1 files changed, 31 insertions, 31 deletions
diff --git a/shell/index.php b/shell/index.php index 6d62a65..ce89fec 100644 --- a/shell/index.php +++ b/shell/index.php @@ -1,31 +1,31 @@ -<?php -$LTS = 'set'; -session_start(); -include('no_magicquotes.php'); - -global $auth_html; -include('login.php'); - -echo '<?xml version="1.0" encoding="utf-8"?>'; -?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" - "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us" dir="ltr" > -<head> - <title>ltShell 3</title> - <link rel="stylesheet" href="style.css" media="screen,projection" /> - <script type="text/javascript"> - function formfocus() { - document.getElementById('prompt').focus(); - } - window.onload = formfocus; - </script> -</head> -<body> -<div class="login"><?php echo $auth_html; ?></div> -<?php -if ( isset($_SESSION['user']) && ($_SESSION['user']!='') ) { - include('shell.php'); -} -?> -</body></html> +<?php
+$LTS = 'set';
+session_start();
+include('no_magicquotes.php');
+
+global $auth_html;
+include('login.php');
+
+echo '<?xml version="1.0" encoding="utf-8"?>';
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us" dir="ltr" >
+<head>
+ <title>ltShell 3</title>
+ <link rel="stylesheet" href="style.css" media="screen,projection" />
+ <script type="text/javascript">
+ function formfocus() {
+ document.getElementById('prompt').focus();
+ }
+ window.onload = formfocus;
+ </script>
+</head>
+<body>
+<div class="login"><?php echo $auth_html; ?></div>
+<?php
+if ( isset($_SESSION['user']) && ($_SESSION['user']!='') ) {
+ include('shell.php');
+}
+?>
+</body></html>
|