This repository has been archived by the owner on Apr 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
/
NoCommands.html
99 lines (94 loc) · 3.8 KB
/
NoCommands.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!-- Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE.txt 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></title>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="https://appsforoffice.microsoft.com/lib/1/hosted/office.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/1.0/fabric.min.css" />
<link rel="stylesheet" href="https://appsforoffice.microsoft.com/fabric/1.0/fabric.components.min.css" />
<script src="../Assets/Scripts/jquery.fabric.js" type="text/javascript"></script>
<link href="../App.css" rel="stylesheet" type="text/css" />
<script src="../App.js" type="text/javascript"></script>
<link href="NoCommands.css" rel="stylesheet" type="text/css" />
<script src="NoCommands.js" type="text/javascript"></script>
</head>
<body>
<div id="content-header">
<div class="padding">
<h1 class="ms-font-xl ms-fontWeight-light ms-fontColor-white">Insert text</h1>
</div>
</div>
<div id="content-main" class="ms-Grid">
<div class="ms-Grid-row">
<div class="ms-Grid-col ms-u-sm12">
<div class="ms-Grid">
<div class="ms-Grid-row">
<div class="ms-Grid-col ms-u-sm12">
<h2 class="ms-font-l">Pre-canned text</h2>
</div>
</div>
<div class="ms-Grid-row button-row">
<div class="ms-Grid-col ms-u-sm12">
<button id="insertDefault" class="ms-Button stretch">
<span class="ms-Button-label">Default message</span>
</button>
</div>
</div>
<div class="ms-Grid-row button-row">
<div class="ms-Grid-col ms-u-sm12">
<button id="insertMsg1" class="ms-Button stretch">
<span class="ms-Button-label">Hello World!</span>
</button>
</div>
</div>
<div class="ms-Grid-row button-row">
<div class="ms-Grid-col ms-u-sm12">
<button id="insertMsg2" class="ms-Button stretch">
<span class="ms-Button-label">Add-ins are cool!</span>
</button>
</div>
</div>
<div class="ms-Grid-row button-row">
<div class="ms-Grid-col ms-u-sm12">
<button id="insertMsg3" class="ms-Button stretch">
<span class="ms-Button-label">Visit Outlook Dev Center</span>
</button>
</div>
</div>
</div>
</div>
</div>
<div class="ms-Grid-row">
<div class="ms-Grid-col ms-u-sm12">
<div class="ms-Grid">
<div class="ms-Grid-row">
<div class="ms-Grid-col ms-u-sm12">
<h2 class="ms-font-l">Custom text</h2>
</div>
</div>
<div class="ms-Grid-row">
<div class="ms-Grid-col ms-u-sm12">
<div class="ms-TextField">
<label class="ms-Label">Text to insert:</label>
<input id="textToInsert" class="ms-TextField-field" />
<span class="ms-TextField-description">Enter the text you want to insert here.</span>
</div>
</div>
</div>
<div class="ms-Grid-row">
<div class="ms-Grid-col ms-u-sm12">
<button id="insertCustom" class="ms-Button">
<span class="ms-Button-label">Insert</span>
<span class="ms-Button-description">Inserts the text entered into the body of the message.</span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>