Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
70 lines (60 loc) · 3.01 KB
/
Copy pathindex.html
File metadata and controls
70 lines (60 loc) · 3.01 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!-- Copyright (c) Microsoft Corporation.
Licensed under the MIT License. -->
<!-- <indexSnippet> -->
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="utf-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>JavaScript SPA Graph Tutorial</title>
<linkrel="shortcut icon" href="g-raph.png">
<linkrel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
crossorigin="anonymous">
<linkhref="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<navclass="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
<divclass="container">
<ahref="/" class="navbar-brand">Javascript SPA Graph Tutorial</a>
<buttonclass="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse"
aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<spanclass="navbar-toggler-icon"></span>
</button>
<divclass="collapse navbar-collapse" id="navbarCollapse">
<ulid="authenticated-nav" class="navbar-nav me-auto"></ul>
<ulclass="navbar-nav align-items-center justify-content-end">
<liclass="nav-item">
<aclass="nav-link" href="https://docs.microsoft.com/graph/overview" target="_blank">
↗ Docs
</a>
</li>
<liid="account-nav" class="nav-item"></li>
</ul>
</div>
</div>
</nav>
<mainid="main-container" role="main" class="container">
</main>
<!-- Bootstrap -->
<scriptsrc="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
crossorigin="anonymous"></script>
<!-- Moment.js -->
<scriptsrc="https://cdn.jsdelivr.net/npm/moment@2.29.4/moment.min.js"></script>
<scriptsrc="https://momentjs.com/downloads/moment-timezone-with-data-10-year-range.js"></script>
<!-- MSAL -->
<scriptsrc="https://alcdn.msauth.net/browser/2.28.1/js/msal-browser.min.js"
integrity="sha384-ei8xVSyFPTuRnbO1sdYy5qJT6Kd9neBfVG8AjZySEwdMG1GhCThbceSqxJnx0Ci3"
crossorigin="anonymous"></script>
<!-- Graph SDK -->
<scriptsrc="https://cdn.jsdelivr.net/npm/@microsoft/microsoft-graph-client@3.0.2/lib/graph-js-sdk.js"></script>
<scriptsrc="https://cdn.jsdelivr.net/npm/@microsoft/microsoft-graph-client@3.0.2/lib/graph-client-msalBrowserAuthProvider.js"></script>
<scriptsrc="config.js"></script>
<scriptsrc="timezones.js"></script>
<scriptsrc="ui.js"></script>
<scriptsrc="graph.js"></script>
<scriptsrc="auth.js"></script>
</body>
</html>
<!-- </indexSnippet> -->