diff options
author | gbmor <ahriman@falte.red> | 2020-05-05 00:49:47 -0400 |
---|---|---|
committer | gbmor <ahriman@falte.red> | 2020-05-05 00:49:47 -0400 |
commit | 8972b9ff756eadb7d425d7de3315bfa8716abc3d (patch) | |
tree | e261665d8b3f700ae5e2df121d770645f0e6ce92 | |
parent | 03982fdf6eff81a3e2b3358efde973023fc33446 (diff) | |
download | site-8972b9ff756eadb7d425d7de3315bfa8716abc3d.tar.gz |
fixed alignment of userlist: left-justify
-rwxr-xr-x | stats.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/stats.php b/stats.php index 2229127..468a401 100755 --- a/stats.php +++ b/stats.php @@ -10,13 +10,17 @@ <body> <div id="container"> <?php include("header.html"); ?> - <div id="content" style="text-align: center;"> + <div id="content"> <br /> <!--<p><code><?php include("table.weekconns"); ?></code> unique users logged in this week (resets Saturdays <code>00:00 UTC</code>)</p>--> + <div style="max-width: 25%; margin: 0 auto;"> <p>Connected Users (<code>5min</code>):</p> <?php include("table.connusers"); ?> + </div> + <div style="max-width: 25%; margin: 0 auto;"> <p>Registered Users (<code>1hr</code>):</p> <?php include("table.regusers"); ?> + </div> </div> </div> </body> |