-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 955 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 955 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>JavaScript Microsoft Graph SPA</title>
<link rel="icon" href="data:;base64,="> <!-- Suppress favicon error -->
</head>
<body>
<main id="main-container" role="main" class="container">
<div id="content" style="display: none;">
<h4>Welcome <span id="userName"></span></h4>
</div>
<a id="signin" onclick="displayUI(); return false;" href="#">
<img src="./images/ms-symbollockup_signin_light.png" alt="Sign in with Microsoft" />
</a>
</main>
<script src="https://alcdn.msauth.net/browser/2.1.0/js/msal-browser.min.js"
integrity="sha384-EmYPwkfj+VVmL1brMS1h6jUztl4QMS8Qq8xlZNgIT/luzg7MAzDVrRa2JxbNmk/e"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@microsoft/microsoft-graph-client/lib/graph-js-sdk.js"></script>
<script src="auth.js"></script>
<script src="graph.js"></script>
<script src="ui.js"></script>
</body>
</html>