<HTML> 
<head> 
<?php 
    //Include menu options applicable to all pages of the web site 
    include("PhpSampleTemplate.php"); 
    //Enable the option to display any parsing errors. 
    error_reporting(E_ALL | E_STRICT); 
    ini_set('display_errors', 1); 
?> 
<title> 
Windows Azure Active Directory Management Console 
</title> 
</head> 
<BODY> 
<h1> 
    Windows Azure Active Directory Management Console 
</h1> 
<p> 
    <a href="DisplayUsers.php"><b>User Management</b></a> 
    <br/><br/> 
    <a href="DisplayGroups.php"><b>Group Management</b></a> 
    <br/><br/> 
    <a href="GetChanges.php"><b>Synchronize Changes</b></a> 
</p> 
</BODY> 
</HTML> 
 
 |