Example #1
0
  <link rel="stylesheet" href="lstyle.css">
</head>
<body>
  <div id="container">
    <form action="logout.php" method="post" id="logout">
<?php 
echo h($app->me()->email);
?>
 <input type="submit" value="Logout">
       <input type="hidden" name="token" value="<?php 
echo h($_SESSION['token']);
?>
">
    </form>
	<h1>Users <span class="fs12">(<?php 
echo count($app->getValues()->users);
?>
)</span></h1>
	<ul>
	<?php 
foreach ($app->getValues()->users as $user) {
    ?>
	<li><?php 
    echo h($user->email);
    ?>
</li>
<?php 
}
?>
    </ul>
  </div>