forked from OfficeDev/Office-Add-in-Auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopupRedirect.html
36 lines (27 loc) · 1.29 KB
/
popupRedirect.html
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
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license in root of repo. -->
<!--
After login in with a provider, the popup dialog is redirected to this page.
-->
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- For the Office UI Fabric, go to http://aka.ms/office-ui-fabric to learn more. -->
<link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/2.1.0/fabric.min.css">
<link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/2.1.0/fabric.components.min.css">
<link rel="stylesheet" href="Styles/index.css">
<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.2.1.min.js"></script>
<!-- Load the Office JavaScript libraries -->
<script src="https://appsforoffice.microsoft.com/lib/beta/hosted/office.js" type="text/javascript"></script>
<script src="Scripts/popupRedirect.js"></script>
</head>
<body>
<div class="ms-typeramp-dialog">
<p class="ms-font-m">Please wait for this window to close, before continuing with the add-in.</p>
</div>
</body>
</html>
<!--
-->