-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
39 lines (39 loc) · 1.37 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
<!doctype html>
<html>
<head>
<title>What Cashtag?</title>
<script src="jquery-3.4.1.min.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" type="text/css" href="popup.css">
</head>
<body>
<div class="container">
<div id="title">
<img src="images/icon_128.png" alt="Icon"></img>
</div>
<div id='noKeyYet'>
<div id="instructions">
<p>1. If you don't have one, get a free stocks API key from <a href="https://www.alphavantage.co/support/#api-key" target="_blank">here</a><p>
<p>2. Paste in your API key to the box below!<p>
</div>
<div id="apiSub">
<input id="keyInput"></input>
<button id="submitButton">submit</button>
</div>
<div id="noKeyMsg">
</div>
</div>
<div id='keyIn'>
<img src="images/checkmark.png" alt="check mark"></img>
<div id='keyInfo'>
<p id='firstMessage'>Your current API key:</p>
<p id='apiKey'></p>
</div>
<button id='reenter'>re-enter key</button>
</div>
<div id="help">
for more information on usage and limits click <a href="https://github.com/benedelstein/Twitter-Finance-Chrome-Extension" target="_blank">here</a>
</div>
</div>
</body>
</html>