-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
29 lines (28 loc) · 1.08 KB
/
popup.html
File metadata and controls
29 lines (28 loc) · 1.08 KB
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
<!doctype html>
<html>
<head>
<title>Set Page Color Popup</title>
<link href="basscss.min.css" rel="stylesheet" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div class="m2">
<header>
<h2 class="h3 blue">EVK Shareholders</h2>
</header>
<main>
<p class="blue">Extract the data from the <a href="http://statistics.e-register.ee/en/shareholders">EVK shareholders</a> table and download it as CSV file.</p>
<p class="blue">Make sure you select the share from list and enter the Captcha code before extracting data.</p>
</main>
<main class="panel">
<select class="select btn-outline blue share-list">
<option value="default">Default</option>
</select>
<button class="btn btn-outline blue" data-action="clear-all">Clear all</button>
<button class="btn btn-outline blue ml1" data-action="extract">Extract</button>
<button class="btn btn-outline blue ml1" data-action="download">Download</button>
</main>
</div>
<script src="popup.js"></script>
</body>
</html>