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
/
landing-page.html
48 lines (38 loc) · 1.97 KB
/
landing-page.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
47
48
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license in root of repo. -->
<!--
This file is main working page of the add-in.
-->
<!DOCTYPE html>
<html>
<head lang="en">
<title>Auth with Auth0</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 APIs -->
<script src="https://appsforoffice.microsoft.com/lib/beta/hosted/office.js" type="text/javascript"></script>
<script src="Scripts/app.js"></script>
<script src="Scripts/landing.page.js"></script>
</head>
<body class="ms-font-l">
<div class="ms-navigation__header"></div>
<div class="ms-navigation__content">
<div class="ms-font-xl ms-navigation__content__title">Insert Data into the Document</div>
</div>
<div class="ms-navigation__content">
<button id="insertUserNameButton" disabled="true" class="popupButton ms-Button ms-Button--primary">
<span class="ms-Button-label">Insert User Name</span>
</button>
</div>
<footer class="ms-landing-page__footer ms-bgColor-themePrimary">
<div class="ms-landing-page__footer--left">
<img src="./assets/images/logo-filled.png" />
<h1 class="ms-font-xl ms-fontWeight-semilight ms-fontColor-white">Auth0 Authenticator</h1>
</div>
</footer>
</body>
</html>