This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/chatbox/cp/index.php
2013-06-19 20:59:59 +01:00

42 lines
No EOL
1.2 KiB
PHP

<?
include 'ajax.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>YShout: Admin CP</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="js/admincp.js"></script>
</head>
<body>
<div id="cp">
<div id="nav">
<ul>
<li id="n-prefs"><a href="#">Preferences</a></li>
<li id="n-bans"><a href="#">Bans</a></li>
<li id="n-about"><a href="#">About</a></li>
</ul>
</div>
<div id="content">
<div class="section" id="login">
<div class="header">
<h1>YShout.Preferences</h1>
</div>
<form id="login-form" action="index.php" method="post">
<label for="login-password">Password:</label>
<input type="password" id="login-password" name="loginPassword">
<span id="login-loading">Loading...</span>
</form>
</div>
<?
if (loggedIn()) echo cp();
?>
</div>
</div>
</body>
</html>