-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
22 lines (21 loc) · 822 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Star Citizen Histogram</title>
<link rel="stylesheet" href="styles/popup.css">
</head>
<body>
<h1>RSI-Histogram</h1>
<label for="parse">Click the button below to create your histogram:</label>
<button id="parse" type="button">Create my Histogram</button>
<div id="status"></div>
<label for="optionsButton">Change your chart options:</label>
<button id="optionsButton" type="button">Options</button>
<label for="downloadButton">Download your chart:</label>
<button id="downloadButton" type="button">Download</button>
<script src="scripts/popup.js"></script>
<script src="scripts/chart.umd.min.js"></script>
</body>
</html>