diff options
Diffstat (limited to 'shell/index.php')
-rw-r--r-- | shell/index.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/shell/index.php b/shell/index.php new file mode 100644 index 0000000..6d62a65 --- /dev/null +++ b/shell/index.php @@ -0,0 +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> |