diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 11:22:36 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-27 11:22:36 -0500 |
commit | 3d6790614bb0dc776e02a95835e5c274263d1d1a (patch) | |
tree | aad032777fccb7fbdc80551a6f89f4bb4845a510 /shell/index.php | |
parent | 66c84cedfb411ad6ca0508d9f45d6d33c8ad474d (diff) |
This zip file was identified as ltshell-3.zip
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> |