mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 07:11:43 +00:00
14 lines
477 B
PHP
14 lines
477 B
PHP
<? // Preamble
|
|
$pageName = "Member Central";
|
|
$need = 'auth';
|
|
$modules = 'member_stuff';
|
|
|
|
require "parts/preamble.php"; // Load most of document
|
|
?>
|
|
<H2>Welcome to Developer Central, <?=ucfirst($REMOTE_USER)?>!</H2>
|
|
<P>This is the area for developers to post news, edit your user information,
|
|
check on the server(s), and so on. Members with Admin-level access can modify
|
|
news items here as well.</P>
|
|
<?
|
|
require siteHome . "/parts/postamble.php"; // Finish this sucker up
|
|
?>
|