-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
165 lines (149 loc) · 5.86 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html>
<head>
<title>Coinbase for Hive Wallet</title>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap-theme.min.css" rel="stylesheet" type="text/css" />
<link href="css/main.css" rel="stylesheet" type="text/css" />
<script src="js/libs/jquery.min.js"></script>
<script src="js/libs/jquery.cookies.min.js"></script>
<script src="js/libs/bootstrap.min.js"></script>
<script src="js/coinbase.js"></script>
</head>
<body>
<div id="container">
<header id="header">
<h1 class="logo">Coinbase</h1>
</header>
<div class="body">
<div class="panel panel-default">
<div id="current-balance" class="panel-body">
<div class="pull-left">
Coinbase balance:
</div>
<div class="pull-right">
<span class="balance">
<span class="value"></span>
</span>
<span class="exchange">
<span class="sign">≈</span>
<span class="value"></span>
<div class="btn-group">
<a class="btn btn-link dropdown-toggle" data-toggle="dropdown">
<span class="currency"></span>
<span class="caret"></span>
</a>
<ul id="change-currency" class="dropdown-menu">
<li><a href="#" data-currency="AUD">AUD</a></li>
<li><a href="#" data-currency="BRL">BRL</a></li>
<li><a href="#" data-currency="CAD">CAD</a></li>
<li><a href="#" data-currency="CHF">CHF</a></li>
<li><a href="#" data-currency="CNY">CNY</a></li>
<li><a href="#" data-currency="CZK">CZK</a></li>
<li><a href="#" data-currency="EUR">EUR</a></li>
<li><a href="#" data-currency="GBP">GBP</a></li>
<li><a href="#" data-currency="ILS">ILS</a></li>
<li><a href="#" data-currency="JPY">JPY</a></li>
<li><a href="#" data-currency="NOK">NOK</a></li>
<li><a href="#" data-currency="NZD">NZD</a></li>
<li><a href="#" data-currency="PLN">PLN</a></li>
<li><a href="#" data-currency="RUB">RUB</a></li>
<li><a href="#" data-currency="SEK">SEK</a></li>
<li><a href="#" data-currency="SGD">SGD</a></li>
<li><a href="#" data-currency="USD">USD</a></li>
<li><a href="#" data-currency="ZAR">ZAR</a></li>
</ul>
</div>
</span>
</div>
</div>
<div class="panel-body">
<div id="alert" class="alert"></div>
<form action="#" method="post" id="transaction" class="form-horizontal">
<div class="form-group">
<div class="col-xs-12">
<ul class="nav nav-pills">
<li class="active"><a href="#" id="send">Send</a></li>
<li><a href="#" id="receive">Receive</a></li>
</ul>
</div>
</div>
<section class="send">
<div class="form-group form-group-qty">
<div class="col-xs-12">
<label for="qty" class="control-label label label-default">BTC</label>
<input type="text" id="qty" name="qty" class="form-control" value="1.00" />
</div>
</div>
<div class="form-group form-group-addr">
<div class="col-xs-12">
<label for="target_address" class="control-label label label-default">To:</label>
<input type="text" id="target_address" name="target_address" class="form-control" value="">
</div>
</div>
<div class="form-group">
<div class="col-xs-12">
<a href="#" id="copy-hive-address">Send to your Hive wallet</a>
</div>
</div>
<div class="form-group">
<div class="col-xs-12">
<button id="send-from-coinbase" class="btn btn-primary btn-sm">Send</button>
<div class="loader"></div>
</div>
</div>
</section>
<section class="receive" style="display: none;">
<div class="form-group form-group-qty">
<div class="col-xs-12">
Your address:
</div>
</div>
<div class="form-group">
<div class="col-xs-12">
<input type="text" id="receive_address" name="receive_address" class="form-control" value="" />
</div>
</div>
<div class="form-group">
<div class="col-xs-12">
<button id="send-from-hive" class="btn btn-primary btn-sm">Send from your Hive wallet</button>
</div>
</div>
</section>
</form>
</div>
</div>
<div class="page-header">
<h2>Recent Coinbase transactions</h2>
</div>
<div class="panel panel-default">
<table id="history" class="table table-condensed">
<thead>
<tr>
<th>Transaction</th>
<th width="80">Date</th>
<th width="70">Amount</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="name">
<span class="glyphicon"></span>
</span>
</td>
<td>
<span class="date"></span>
</td>
<td>
<span class="amount"></span>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="loading" class="logo"></div>
</body>
</html>