This repository has been archived by the owner on Aug 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpopup.html
46 lines (39 loc) · 1.94 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!-- 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>
<script src="Scripts/popup.js"></script>
</head>
<body class="flex-body">
<div class="ms-typeramp-dialog">
<p class="ms-navigation__content ms-font-xl">SIGN IN OPTIONS</p>
<div class="ms-navigation__content">
<button id="facebookButton" class="ms-socialSignInButton ms-Button ms-facebookColor">
<span class="ms-buttonTextColor ms-Button-label">Facebook</span>
</button>
</div>
<div class="ms-navigation__content">
<button id="googleButton" class="ms-socialSignInButton ms-Button ms-googleColor">
<span class="ms-buttonTextColor ms-Button-label">Google</span>
</button>
</div>
<div class="ms-navigation__content">
<button id="msAccountButton" class="ms-socialSignInButton ms-Button ms-microsoftAccountColor">
<span class="ms-buttonTextColor">Microsoft</span>
</button>
</div>
</div>
</body>
</html>