diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-06-01 12:30:31 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-06-01 12:30:31 -0700 |
commit | 91feef607687b1262a949835cffd850cdd819846 (patch) | |
tree | ff71d76eb079155303da88e804f6f50223fa4661 /htdocs/moderate/account.php | |
parent | 9ad57b3d8d1000f17962bb0ba00a8958b2f141db (diff) |
Started the account page.
Diffstat (limited to 'htdocs/moderate/account.php')
-rw-r--r-- | htdocs/moderate/account.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/htdocs/moderate/account.php b/htdocs/moderate/account.php new file mode 100644 index 0000000..5fc87db --- /dev/null +++ b/htdocs/moderate/account.php @@ -0,0 +1,22 @@ +<?php + +/* Foursquare Community Site + * + * Copyright (C) 2011 Foursquare Church. + * + * Developers: Jesse Morgan <jmorgan@foursquarestaff.com> + * + */ + +require_once('../src/base.inc.php'); + +require_once('src/header.inc.php'); + +echo "<h3>Your Account</h3>"; + + + + +require_once('src/footer.inc.php'); + +?> |