forked from OfficeDev/Office-Add-in-OAuth.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
32 lines (26 loc) · 1.26 KB
/
popup.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
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license in root of repo. -->
<!--
This file is the page that initially opens in the popup dialog and redirects
to the provider's login page.
-->
<!DOCTYPE html>
<html>
<head lang="en">
<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 OAuth.io library -->
<script type="text/javascript" src="Scripts/OAuth.io/oauth.js"></script>
<script src="Scripts/popup.js"></script>
</head>
<body>
<div class="ms-typeramp-dialog">
<p class="ms-font-m">If you are not logged in, a sign-on prompt will open shortly.</p>
</div>
</body>
</html>