-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
47 lines (41 loc) · 1.44 KB
/
popup.html
File metadata and controls
47 lines (41 loc) · 1.44 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Monitoring popup</title>
<link href="style.css" rel="stylesheet" type="text/css">
<script src="vue.min.js" type="module"></script>
<script src="popup.js" type="module"></script>
<script src="jquery-1.10.2.min.js" type="module"></script>
</head>
<body class="container">
<div id="container">
<h4> <img src="icon.png" /> Coin Mointoring Program</h4>
<h5>key submit</h5>
<div>
<span>공용 key : <input type="text" id="publicKey" /></span><br />
<span>비밀 key : <input type="text" id="secretKey" /></span>
<button id="keySubmit">등록</button>
</div>
<span id="message" hidden></span>
<h4>##coin regist##</h4>
<input type="text"/>
<table class="type11">
<thead>
<tr>
<th scope="cols">ticker</th>
<th scope="cols">price</th>
<th scope="cols">closingPrice</th>
<th scope="cols">percentage</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
</table>
</div>
<br />
<div id="footer" class="form-8bit-wrapper">
<p>copyright © 2021 최푸름</p>
<a href="https://github.com/choipureum/Coin_Monitoring_ChromeExtension_Program" target="_blank">Git Repository</a>
</div>
</body>
</html>