-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
67 lines (66 loc) · 2.76 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="header">
<div class="company-name">Algolia SFDC Toggl</div>
<span id="settings"><button id="editSettingsBtn">⚙</button></span>
</div>
<div id="settingsMsg" class="hideme">
<p>There are no settings set for this extension, please enter your workspace Id and API key in the settings.</p>
</div>
<div id="projectContent" class="hideme">
<div id="user">Hi, <span id="userName"></span></div>
<div id="status"></div>
<div id="viewClient">
<label>Client</label>
<div class="content">
<label>Name:</label><input type="text" id="clientName" value="" />
<button id="checkClientNameBtn">Check</button>
<span id="clientValid" class="hideme">✓ Client valid</span>
<span id="clientInvalid" class="hideme">✗ Client invalid</span>
<div><button id="addClientBtn" class="hideme">Create client</button></div>
</div>
</div>
<div id="viewCase">
<label>Case</label>
<div class="content"><label>Case/ Service ID:</label><input type="text" id="caseId" value="" /></div>
<div class="content">
<label>Case Title:</label>
<input type="text" id="caseTitle" value="" />
</div>
<div class="content">
<label>Case Type:</label>
<select id="caseType">
<option value="">Please select</option>
<optgroup label="General Cases">
<option value="181565570">Short Term Case</option>
<option value="181565514">Pre-sales</option>
</optgroup>
<optgroup label="Customer Services">
<option value="181563976">Enterprise Foundation</option>
<option value="181584314">Integration Services</option>
<option value="181853474">Magento Integration</option>
<option value="181564672">Platform Foundation</option>
</optgroup>
<optgroup label="Professional Services">
<option value="181563830">Advisory 25</option>
<option value="181562831">Blueprint</option>
<option value="181565466">Kickstart</option>
<option value="181563383">Pulse</option>
<option value="181563497">Quick Start for Crawler</option>
<option value="181563676">Quick Start for Sending Events</option>
<option value="183090863">Quick Start for Shopify</option>
</optgroup>
</select>
</div>
<div>
<button id="addToTogglBtn" disabled>Add project to Toggl</button>
</div>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>