-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
34 lines (34 loc) · 792 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<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 Graph Sample
</title>
<style>
html *
{
color: #000 !important;
font-family:"Segoe UI", Arial, Helvetica, sans-serif;
}
</style>
</head>
<BODY>
<h1>
Windows Azure Active Directory Graph Sample
</h1>
<p>
<a href="DisplayUsers.php"><b>User Management</b></a>
<br/><br/>
<a href="DisplayExtensions.php"><b>Extension Management</b></a>
<br/><br/>
<a href="DisplayApplications.php"><b>View Applications</b></a>
<br/>
</p>
</BODY>
</HTML>