rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

account.php (804B)


      1 <?php
      2 /*
      3 UserCake Version: 2.0.2
      4 http://usercake.com
      5 */
      6 
      7 require_once("models/config.php");
      8 if (!securePage($_SERVER['PHP_SELF'])){die();}
      9 require_once("models/header.php");
     10 
     11 echo "
     12 <body>
     13 <div id='wrapper'>
     14 <div id='top'><div id='logo'></div></div>
     15 <div id='content'>
     16 <h1>UserCake</h1>
     17 <h2>Account</h2>
     18 <div id='left-nav'>";
     19 
     20 include("left-nav.php");
     21 
     22 echo "
     23 </div>
     24 <div id='main'>
     25 Hey, $loggedInUser->displayname. This is an example secure page designed to demonstrate some of the basic features of UserCake. Just so you know, your title at the moment is $loggedInUser->title, and that can be changed in the admin panel. You registered this account on " . date("M d, Y", $loggedInUser->signupTimeStamp()) . ".
     26 </div>
     27 <div id='bottom'></div>
     28 </div>
     29 </body>
     30 </html>";
     31 
     32 ?>