-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
41 lines (33 loc) · 874 Bytes
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Extension Options</title>
</head>
<body>
<div>
<label>
URL of your wordpress site<br />
<input type="url" id="url" style="width: 100%">
</label>
</div>
<div>
<label>
WooCommerce API KEY<br />
<input type="text" id="key" style="width: 100%">
</label>
</div>
<div>
<label>
WooCommerce API SECRET<br />
<input type="text" id="secret" style="width: 100%">
</label>
</div>
<div>
<a href="https://woocommerce.github.io/woocommerce-rest-api-docs/?javascript#rest-api-keys" target="__blank">How to generate api
keys for WooCommerce</a>
</div>
<div id="status"></div>
<button id="save">Save</button>
<script src="options.js"></script>
</body>
</html>