forked from microsoftgraph/msgraph-sdk-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.46 KB
/
Copy pathindex.html
File metadata and controls
43 lines (42 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>Sample For Browser</title>
<script type="text/javascript" src="./secrets.js"></script>
<script src="https://secure.aadcdn.microsoftonline-p.com/lib/1.0.0/js/msal.js"></script>
<script type="text/javascript" src="./graph-js-sdk.js"></script>
<script type="text/javascript" src="./request.js"></script>
<script type="text/javascript" src="./ui.js"></script>
<script type="text/javascript" src="./main.js"></script>
<link rel="stylesheet" type="text/css" href="./main.css" />
</head>
<body style="background: #f3f3f3;">
<div display="inline-block">
<h2>
<span>Hello </span>
<span>!</span>
</h2>
</div>
<div class="main">
<div id="requests" class="grid">
<div id="1" cell="1" class="cell">
<span cell="1" class="cellText">Get My Details</span>
</div>
<div id="2" cell="2" class="cell">
<span cell="2" class="cellText">Get My Drive Files</span>
</div>
<div id="3" cell="3" class="cell">
<span cell="3" class="cellText">Get My Mails</span>
</div>
<div id="4" cell="4" class="cell">
<span cell="4" class="cellText">Upload Large File To OneDrive</span>
<input id="largeFileUpload" class="largeFileUpload" type="file" onchange="request.uploadLargeFile()" />
</div>
</div>
<div class="outputParent">
<div style="margin: 10px; font-weight: bold">Result</div>
<div id="output" width="80%" style="margin: 10px;"></div>
</div>
</div>
</body>
</html>