diff options
author | ahriman <ahriman@falte.red> | 2018-12-09 16:29:59 -0500 |
---|---|---|
committer | ahriman <ahriman@falte.red> | 2018-12-09 16:29:59 -0500 |
commit | 241772b6fccd5467a589e991a8c0cea477331160 (patch) | |
tree | 812cad7742e9c7dea5a30a59549dfc7e49300e20 /stats.php | |
parent | 623bd5529313447738dbe31fa52cbba48fdfed9f (diff) | |
download | site-241772b6fccd5467a589e991a8c0cea477331160.tar.gz |
registered users stats
Diffstat (limited to 'stats.php')
-rw-r--r-- | stats.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/stats.php b/stats.php new file mode 100644 index 0000000..4ff5654 --- /dev/null +++ b/stats.php @@ -0,0 +1,28 @@ +<!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" lang="en" xml:lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title>Tilde Institute :: Stats</title> + <link rel="stylesheet" href="tilde.css" type="text/css"/> + <link rel="icon" type="image/png" href="icon.png"/> +</head> +<body> +<div id="container"> + <div id="logo"> + <img src="logo.png" alt="" /><br /> + <div id="logobyline"> + of OpenBSD Education + </div> + </div> + <div id="navigation"> + <a href="http://tilde.institute">News</a> :: <a href="signup.html">Sign Up</a> :: <a href="irc.html">IRC</a> :: <a href="start.html">Quick-Start Guide</a> :: <a href="coc.html">Code of Conduct</a> :: <a href="https://tilde.zone/@tildeinstitute">Mastodon</a> :: <a href="/wiki/index.php">Wiki</a> :: <a href="stats.php">Stats</a> + </div> + <div id="content"> + <!-- <p>Connected Users (5min):</p> + <?php include("table.connusers") ?> --> + <p>Registered Users (1hr):</p> + <?php include("table.regusers") ?> + </div> +</div> +</body> +</html> |