forked from OfficeDev/Outlook-Add-In-Contextual-Regex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.33 KB
/
index.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
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. see LICENSE in the project root for license information. -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Contoso Part Number Add-in</title>
<link href="//static2.sharepointonline.com/files/fabric/office-ui-fabric-core/9.0.0/css/fabric.min.css" rel="stylesheet">
<link href="index.css" rel="stylesheet" type="text/css" />
<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script>
<script src="//appsforoffice.microsoft.com/lib/1/hosted/office.js"></script>
<script src="index.js"></script>
</head>
<body>
<div id="content-main" class="ms-Fabric">
<div id="error" class="ms-font-m ms-borderBase ms-borderColor-neutralTertiaryAlt ms-bgColor-error ms-fontColor-error">
<span class="icon ms-font-l"><i class="ms-Icon ms-Icon--Error" aria-hidden="true"></i></span>
<span class="ms-font-l ms-fontWeight-semibold">Error</span>
<pre><code id="error-msg"></code></pre>
</div>
<div id="entity-display">
<h2 class="ms-font-l">Selected match</h2>
<pre><code id="selected-match"></code></pre>
<h2 class="ms-font-l">All detected matches</h2>
<pre><code id="all-matches"></code></pre>
</div>
</div>
</body>
</html>