This repository has been archived by the owner on Sep 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
61 lines (61 loc) · 2.41 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="https://style.binary.com/binary.css">
<link rel="stylesheet" href="style.css">
<script src="lib/jquery-3.1.1.min.js"></script>
</head>
<body>
<div id="header" class="primary-color">
<a class="logo-parent" href="https://binary.com" target="_blank">
<img class="logo-symbol" src="https://style.binary.com/images/logo/symbol.svg">
<img class="logo-text" src="https://style.binary.com/images/logo/type.svg">
</a>
<div id="logout"><img src="icons/logout.svg"></div>
<div id="account" class="main-account">
<div class="account-id"></div>
<div>Balance: $<span class="balance"></span></div>
</div>
</div>
<div id="form">
<div id="auth-error" class="hidden"></div>
<input id="input-token" type="text" placeholder="Token">
<label><input id="remember-token" type="checkbox"><span>Remember</span></label>
<button id="submit-token">Submit</button>
<p><a href="https://www.binary.com/en/user/security/api_tokenws.html" target="_blank">How to Get a Token</a></p>
</div>
<div id="content">
<div id="no-contracts">
<h1 class="h1-title">You have no active contracts</h1>
</div>
<div id="portfolio">
<h1>Portfolio</h1>
<table>
<thead>
<tr>
<th>Ref.</th>
<th>Potential payout</th>
<th>Contract details</th>
<th>Purchase</th>
<th>Indicative</th>
<th></th>
</tr>
</thead>
<tbody>
<tr class="tpl">
<td class="ref"></td>
<td class="payout"><strong></strong></td>
<td class="details"></td>
<td class="purchase"><strong></strong></td>
<td class="indicative"><strong></strong></td>
<td class="link"><a class="button" href="https://binary.com/en/user/portfoliows.html" target="_blank"><span>View</span></a></td>
</tr>
</tbody>
</table>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>