forked from blockchain/unused-My-Wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-dev.html
1493 lines (1188 loc) · 64.9 KB
/
index-dev.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html manifest="/wallet/wallet.manifest">
<head>
<title>My Wallet - Be Your Own Bank - Blockchain.info</title>
<meta name="robots" content="noindex">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link rel="stylesheet" href="https://blockchain.info/Resources/bootstrap.min.css"><link rel="stylesheet" href="https://blockchain.info/Resources/bootstrap-responsive.min.css"><link rel="stylesheet" href="https://blockchain.info/Resources/overrides.min.css"><script src="https://blockchain.info/Resources/wallet/jquery.min.js" type="text/javascript"></script><script type="text/javascript" src="https://blockchain.info/Resources/wallet/bootstrap.min.js"></script><script src="/wallet/shared.js" type="text/javascript"></script><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" href="https://blockchain.info/Resources/app-overrides.css" type="text/css">
<link rel="stylesheet" href="https://blockchain.info/Resources/print.css" type="text/css" media="print"/>
<style type="text/css">
.navbar {
margin-bottom: 0px;
}
</style>
<script type="text/javascript" src="/wallet/bitcoinjs.js"></script>
<script type="text/javascript" src="/wallet/blockchainapi.js"></script>
<script type="text/javascript" src="/wallet/wallet.js"></script>
</head>
<body data-war-checksum="39035d6fe03e768a" data-extra-seed="e6a4b9c1e42ffc9c849d322e243ad4ed656b8b5b30d03ae28ce5940481855506" data-language="en">
<div class="navbar" style="height:40px;overflow:visible">
<div class="navbar-inner" style="height:43px;">
<div class="container">
<div class="logo hidden-phone hidden-tablet"><a href="/nl/"><img border="0" src="https://blockchain.info/Resources/blockchain-logo-vector.svg" style="width:194px;height:53px" alt="Bitcoin block explorer and currency statistics"/></a></div>
<ul class="nav">
<li><a href="/nl/" title="Blockchain.info Home">Home</a></li>
<li><a href="/nl/charts" title="Bitcoin Charts">Charts</a></li>
<li><a href="/nl/stats" title="Bitcoin Stats">Stats</a></li>
<li><a class="hidden-phone" href="https://markets.blockchain.info" title="Bitcoin Markets">Markets</a></li>
<li class="hidden-phone"><a href="/nl/api" title="Blockchain Developer Tools">API</a></li>
<li class="active"><a href="/nl/wallet" title="Bitcoin Wallet">Wallet</a></li>
</ul>
<div class="hidden-phone pull-right" style="padding-top:9px">
<img src="https://blockchain.info/Resources/refresh.png" id="refresh">
<img src="https://blockchain.info/Resources/logout.png" id="logout" style="padding-left:9px">
</div>
</div>
</div>
</div>
<div class="quickstart">
<div class="container">
<div class="row-fluid">
<div class="span12">
<h1>
<span class="hidden-phone">My Wallet <small>Be Your Own Bank.</small></span>
<div style="display:none;" id="large-summary" class="pop pull-right" title="Your Balance" data-content="This shows the balance of your bitcoin wallet. You may not be able to spend this amount until all transactions are confirmed.">
<span id="balance"></span>
<small id="balance2">0</small>
</div>
</h1>
</div>
</div>
<div class="row-fluid" style="margin-top:10px">
<div class="span12 no-print">
<ul class="nav nav-pills pull-left" style="margin-bottom: 3px">
<li><a id="home-intro-btn">Wallet Home</a></li>
<li><a id="my-transactions-btn">My Transactions</a></li>
<li><a id="send-coins-btn">Send Money</a></li>
<li><a id="receive-coins-btn">Receive Money</a></li>
<li><a class="hidden-phone" id="import-export-btn">Import / Export</a></li>
</ul>
<h6 class="pull-right" id="status-container">
<span style="display: none" class="loading-indicator"><span class="loading-text">Loading</span> <img style="vertical-align:middle" src="https://blockchain.info/Resources/ajax-loader.gif"></span>
</h6>
</div>
</div>
</div>
</div>
<div id="main-notices-container" style="z-index:1; position:absolute; right:0px; margin:20px; width:auto; min-width:280px; overflow:visible; height:0px;">
<span id="notices" style="max-width:600px;width:auto;"></span>
</div>
<div style="width:100%; float:left; clear:both"></div>
<div class="container" style="margin-top:10px">
<div id="my-account" style="display:none;">
<div style="width:400px;margin:50px auto;" class="well" id="account-settings-warning">
<h2>Sensitive Data</h2>
<p>Account Settings displays sensitive data which should not be shown to other people. It is recommended you do not open this section in public places or take screenshots of this section.</p>
<p align="right">
<button class="btn btn-primary" id="show-account-settings">Continue</button>
</p>
</div>
<div id="my-account-content" style="display:none"></div>
</div>
<div id="home-intro" style="display:none;">
<div class="row-fluid">
<div class="span6">
<table class="well table table-striped">
<tr>
<td>Total Transactions</td>
<td><span id="summary-n-tx">0</span></td>
<td>
<div class="img">
<img src="https://blockchain.info/Resources/chart_bar.png" border="0" id="summary-n-tx-chart">
</div>
</td>
</tr>
<tr>
<td>Total Received</td>
<td><span id="summary-received">0</span></td>
<td>
<div class="img">
<img src="https://blockchain.info/Resources/chart_bar.png" id="summary-received-chart">
</div>
</td>
</tr>
<tr>
<td>Total Sent</td>
<td colspan="2"><span id="summary-sent">0</span></td>
</tr>
<tr>
<td>Final Balance</td>
<td><span id="summary-balance">0</span></td>
<td>
<div class="img">
<img src="https://blockchain.info/Resources/chart_bar.png" id="summary-balance-chart">
</div>
</td>
</tr>
</table>
<div style="text-align:center;padding-top:10px;padding-bottom:10px;overflow:hidden" class="no-watch-only">
<div id="my-primary-addres-qr-code" style="display:inline-block;vertical-align:top;margin-right:10px;"></div>
<div style="display:inline-block;vertical-align:middle;margin-top:5px;" class="well">
<small>This Is Your Bitcoin Address</small>
<p class="primary-address" id="my-primary-address"></p>
<small>Share this with anyone and they can send you payments.</small>
</div>
</div>
</div>
<div class="span6">
<div class="no-watch-only" id="home-deposit-container"></div>
<div class="page-header" id="partner-home-buttons" style="display:none">
<h3 style="padding-bottom:10px">Partners</h3>
<p align="right"></p>
</div>
<div class="page-header" id="home-account-container">
<h3>Account Settings</h3>
<p>Edit your account settings including email address, password and notification settings.</p>
<p align="right">
<button class="btn" id="my-account-btn">Account Settings</button>
</p>
</div>
<div id="home-backup-container">
<h3>Backup</h3>
<p>Backing up your wallet is an important step which is easy to forget. Blockchain.info takes every precaution to keep your wallet safe but it's always better to keep a local copy just in case.</p>
<div class="btn-group" align="right">
<button class="btn download-backup-btn hidden-phone hidden-tablet" style="display:inline;float:none">Download</button><button class="btn" id="dropbox-backup-btn" style="display:inline;float:none">Dropbox</button><button class="btn" id="gdrive-backup-btn" style="display:inline;float:none">Google Drive</button><button class="btn" id="email-backup-btn" style="display:inline;float:none">Email</button><button class="btn paper-wallet-btn hidden-tablet" style="display:inline;float:none">Paper</button>
</div>
</div>
</div>
</div>
</div>
<div id="receive-coins" style="display:none;">
<h2>Addresses <small>Your receiving bitcoin addresses</small></h2>
<ul class="nav nav-tabs">
<li class="active"><a href="#active-addresses" data-toggle="tab">Active</a></li>
<li><a href="#archived-addresses" data-toggle="tab">Archived</a></li>
</ul>
<div id="receive-content" class="tab-content">
<div class="active tab-pane" id="active-addresses" style="margin-bottom:200px">
<table class="table table-striped">
<thead>
<tr>
<th>Address</th>
<th>Balance</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
<button class="btn btn-success pop pull-right" id="new-addr" style="margin:5px" title="New Address" data-content="Click here to generate a new bitcoin address. You can begin receiving bitcoins into this address immediately">New Address</button>
<div class="btn-group pull-right" style="margin:5px">
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
More Actions <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a id="generate-cold-storage">New Cold Storage Address</a></li>
<li><a id="chord-diagram">View Relationship Diagram</a></li>
<li><a id="group-received" title="Taint Grouping">Group Addresses By Taint</a></li>
<li><a class="hidden-phone" id="verify-message" title="Verify Message">Verify Message</a></li>
</ul>
</div>
</div>
<div class="tab-pane" id="archived-addresses" style="margin-bottom:200px">
<h3>Archived Addresses</h3>
<p>Archived addresses are addresses you may not need anymore that are hidden from the main view but still part of your wallet. You can un-archive them at any time by clicking the blue icon.</p>
<table class="table table-striped">
<thead>
<tr>
<th></th>
<th>Bitcoin Address</th>
<th></th>
<th></th>
</thead>
<tbody></tbody>
</table>
<div style="float:left">
<button class="btn btn-secondary" id="archived-select-all">Select All</button>
<button class="btn btn-secondary" id="archived-select-none">Select None</button>
</div>
<div style="float:right">
<button class="btn btn-secondary pop" id="archived-sweep" title="Sweep Keys" data-content="Move any bitcoins in the selected keys to a different bitcoin address.">Sweep Keys</button>
<button class="btn btn-danger pop" id="archived-delete" title="Delete Keys" data-content="Delete the selected private keys.">Delete Keys</button>
</div>
</div>
</div>
</div>
<div style="display: none;" id="restore-wallet">
<div class="row-fluid" id="welcome_back_container">
<div class="span6">
<div class="page-header">
<h3>Welcome Back </h3>
<small>Please enter your login details below:</small>
</div>
<div class="form-horizontal">
<div class="control-group">
<label class="control-label">Identifier:</label>
<div class="controls"><input id="restore-guid" placeholder="Identifier or Alias" value="7e359676-d89c-442e-87d5-c82a1d721a7f" type="text"/></div>
</div>
<div class="control-group auth-0 auth-1 auth-2 auth-3 auth-4 auth-5" style="display:none">
<label class="control-label">Password:</label>
<div class="controls"><input id="restore-password" type="password"/></div>
</div>
<div class="control-group auth-1 auth-3" style="display:none">
<label class="control-label">Yubikey:</label>
<div class="controls">
<input class="code yubikey" style=" background: white url(/Resources/yubikey_16.gif) no-repeat 4px 4px; color:green; text-indent:20px;" type="text"/>
<p class="help-block">Select the text box above and press the green LED light on your Yubikey.</p>
</div>
</div>
<div class="control-group auth-2" style="display:none">
<label class="control-label">Email Code:</label>
<div class="controls">
<input class="code" style="background: white url(/Resources/email_16.gif) no-repeat 4px 4px; color:green; text-indent:20px;" type="text"/>
<p class="help-block">An email containing a temporary confirmation code has been sent to your account.</p>
</div>
</div>
<div class="control-group auth-4" style="display:none">
<label class="control-label">Google Authenticator:</label>
<div class="controls"><input class="code" style="background: white url(/Resources/google_16.png) no-repeat 4px 4px; color:green; text-indent:20px;" type="text">
<p class="help-block">Please open your Google Authenticator app and enter the code displayed.</p>
</div>
</div>
<div class="control-group auth-5" style="display:none">
<label class="control-label">SMS Code:</label>
<div class="controls">
<input class="code" style="background: white url(/Resources/sms_16.png) no-repeat 4px 4px; color:green; text-indent:20px;" type="text"/>
<p class="help-block">A text message has been sent to your cell phone. Please enter the code in that message above.</p>
</div>
</div>
<div style="padding-left: 160px;padding-bottom:20px">
<button class="btn btn-primary" id="restore-wallet-continue">Open Wallet</button>
<a href="/nl/wallet/new" target="blank" id="signup-btn" class="btn btn-secondary" style="display:none">Create New Wallet</a>
</div>
<div class="well auth-2" style="display:none;margin: 0 auto; margin-top: 10px; max-width: 470px;">
<h5>Can't Find Your Email Code?</h5>
<p>Be sure to check your spam folder. If you still can't find the email click the button below to resend it.</p>
<p align="center">
<a class="btn resend-code">Resend Link</a>
</p>
</div>
<div class="well auth-5" style="display:none;margin: 0 auto; margin-top: 10px; max-width: 470px;">
<h5>Did Not Receive An SMS Code?</h5>
<p>Please check your network signal. Messages can take up to 10 minutes to be delivered, if it has been over 10 minutes click the button below to resend the message.</p>
<p align="center">
<a class="btn resend-code">Resend Message</a>
</p>
</div>
<div class="well auth-0 auth-1 auth-3 auth-4" style="margin: 0 auto; display:none; margin-top: 10px; max-width: 470px;">
<p><img src="https://blockchain.info/Resources/ssl-green-bar.png"></p>Websites designed to steal your password can look exactly like this page. Always check the domain name carefully before entering your details.
</div>
</div>
</div>
<div class="span6" id="forgotten-something-container">
<div class="page-header">
<h3>Forgotten Something?</h3> <small>Help! I've locked myself out of my account</small>
</div>
<h4>Lost Identifier or Alias</h4>
<p> If you have lost your wallet identifier first check the confirmation email you received during sign up. Can't find the email? Click the button below and we can send you a new one.</p>
<p align="right">
<a class="btn btn-small btn-secondary recover-wallet-btn">Recover Wallet</a> <a class="btn btn-small btn-secondary" target="blank" href="/nl/wallet/import-wallet">Import Backup</a> <a class="btn btn-small btn-secondary download-backup-btn">Download Backup</a>
</p>
<h4>Lost Two-factor Authentication Details.</h4>
<p>If you have lost your two factor authentication details your wallet is still fully recoverable. All we need is reasonable proof you are the account owner which can be provided by completing the form linked below.</p>
<p align="right">
<a class="btn btn-small btn-secondary" id="reset-two-factor-btn">Reset Two Factor Authentication</a>
</p>
<h4>Need Help?</h4>
<p>
Read our <a target="blank" href="/nl/wallet/support-pages">Support Pages</a>
</p>
</div>
</div>
</div>
<div id="my-transactions" style="display:none;">
<div class="row-fluid">
<div class="span12">
<h2 style="display:inline-block">Transactions <small>Summary of your recent transactions</small></h2>
<div style="float:right">
<div class="btn-group" style="display:inline-block">
<a class="btn" href="#"><i class="icon-zoom-in"></i> View</a>
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#"><span class="caret"></span></a>
<ul class="dropdown-menu tx_display">
<li><a href="#" data-value="0"> Compact</a></li>
<li><a href="#" data-value="1"> Detailed</a></li>
<li class="divider"></li>
<li><a href="#" data-value="export"> Export History</a></li>
</ul>
</div>
<div class="btn-group" style="display:inline-block">
<a class="btn" href="#"><i class="icon-filter"></i> Filter</a>
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#"><span class="caret"></span></a>
<ul class="dropdown-menu tx_filter">
<li><a href="#" data-value="0"><i class="icon-resize-horizontal"></i> All</a></li>
<li><a href="#" data-value="1"><i class="icon-arrow-right"></i> Sent</a></li>
<li><a href="#" data-value="2"><i class="icon-arrow-left"></i> Received</a></li>
<li><a href="#" data-value="4"><i class="icon-random"></i> Escrow</a></li>
</ul>
</div>
</div>
<div class="page-header" style="margin-top:0px;padding:0px"></div>
</div>
</div>
<p class="padded well" id="no-transactions" align="center">Normally your bitcoin transactions would be listed here but you have not made any yet.</p>
<table id="transactions-compact" class="table table-striped table-condensed table-hover">
<thead><tr><th class="hidden-phone" style="width:365px">To / From</th><th style="min-width:130px">Date</th><th style="min-width:152px">Amount</th><th class="hidden-phone">Balance</th></tr></thead>
<tbody></tbody>
</table>
<div id="transactions-detailed"></div>
<div class="pagination" align="center" style="clear:both;float:none">
<ul></ul>
</div>
</div>
<div id="send-coins" style="display: none;">
<div class="row-fluid">
<div class="span3">
<div class="well" style="padding: 8px 0;">
<ul class="nav nav-list" id="send-coins-nav">
<li class="nav-header">Transaction Type</li>
<li class="active"><a href="#send-quick" data-toggle="tab"><i class="icon-time"></i> Quick Send</a></li>
<li><a href="#shared-coin" data-toggle="tab"><i class="icon-random"></i> Shared Coin</a></li>
<li><a href="#send-custom" data-toggle="tab"><i class="icon-cog"></i> Custom</a></li>
<li class="hidden"><a href="#send-email" data-toggle="tab"><i class="icon-lock"></i> Escrow</a></li>
<li class="nav-header">Send Via</li>
<li><a href="#send-email" data-toggle="tab"><i class="icon-envelope"></i> Email</a></li>
<li><a href="#send-sms" data-toggle="tab"><i class="icon-user" style="background-image:url('/Resources/sms.png');width:16px;background-position: 0px"></i> SMS Message</a></li>
<li class="divider" id="partners-send-divider" style="display:none"></li>
<li class="nav-header">Partners</li>
<li class="divider"></li>
<li class="nav-header">Tools</li>
<li><a href="#address-book" data-toggle="tab"><i class="icon-book"></i> Address Book</a></li>
</ul>
</div>
<div class="well hidden-phone" style="padding: 8px 0;" id="send-ticker">
<div style="font-size:12px;padding-left:10px;">Exchange Rates (1 BTC = )</div>
<ul class="nav nav-list"></ul>
<div style="font-size:10px;padding-left:25px;">Delayed By Up To 15 minutes</div>
</div>
</div>
<div class="span9">
<div class="tab-content">
<div class="active tab-pane well" id="send-quick">
<h4 class="page-header">Quick Send<br/>
<small>Use the form below to send a payment to a bitcoin address.</small>
</h4>
<div class="form-horizontal">
<div class="recipient-container">
<div class="recipient">
<div class="control-group">
<label class="control-label pop" title="To Address" data-content="This is the Bitcoin Address of the recipient.">To:</label>
<div class="controls">
<span class="qrcodeicon"><input placeholder="Bitcoin Address" name="send-to-address" type="text"/><span></span></span>
<p class="help-block">Enter The Bitcoin Address of the Recipient</p>
</div>
</div>
<div class="control-group">
<label class="control-label pop" title="Amount" data-content="The Amount in Bitcoins to Send">Amount:</label>
<div class="controls">
<div class="input-prepend">
<span class="add-on btc-symbol"></span><input class="send-value span2" name="send-value" placeholder="0.0" type="text" style="width:90px;"/>
</div>
<b>=</b>
<div class="input-prepend">
<span class="add-on local-symbol"></span><input class="send-value-usd span2" placeholder="0.0" type="text" style="width:90px;"/>
</div>
<p class="help-block">Enter The Amount of Bitcoins to send</p>
</div>
</div>
</div>
</div>
<div class="form-actions">
<button class="send btn btn-success pop" title="Send Payment" data-content="Click Here to send payment. You will not be asked to review the transaction.">Send Payment</button>
<div class="progress" style="display:none;">
<div class="bar" style="width:10%"></div>
</div>
</div>
</div>
</div>
<div class="tab-pane well" id="send-sms">
<a style="float:right;" href="/nl/wallet/send-via" target="blank"><img src="https://blockchain.info/Resources/info.png"></a>
<h4 class="page-header">Send Via SMS<br/><small>Use the form below to send bitcoin's via SMS.</small></h4>
<div class="form-horizontal">
<div class="controls">
<img src="https://blockchain.info/Resources/phone.png" style="padding-bottom:25px">
</div>
<div class="recipient-container">
<div class="recipient">
<div class="control-group">
<label class="control-label pop" title="SMS Number" data-content="Enter the SMS number of the person you want to send bitcoins to.">To:</label>
<div class="controls">
<select name="sms-country-code"></select> <br/> <input placeholder="SMS Number" name="send-to-sms" type="text" style="margin-top:5px"/>
<p class="help-block">Enter The SMS Number of the Recipient.</p>
</div>
</div>
<div class="control-group">
<label class="control-label pop" title="Amount" data-content="The Amount in Bitcoins to Send">Amount:</label>
<div class="controls">
<div class="input-prepend input-append">
<span class="add-on btc-symbol"></span><input class="send-value span2" name="send-value" placeholder="0.0" type="text" style="width:90px;"/><span class="add-on send-value-usd">$0</span>
</div>
<p class="help-block">Enter The Amount of Bitcoins to send</p>
</div>
</div>
</div>
</div>
<div class="form-actions">
<button class="send btn btn-success pop" title="Send Payment" data-content="Click Here to send payment. You will not be asked to review the transaction.">Send Payment</button>
<div class="progress" style="display:none;">
<div class="bar" style="width:10%"></div>
</div>
</div>
</div>
</div>
<div class="tab-pane well" id="send-email">
<a style="float:right;" href="/nl/wallet/send-via" target="blank"><img src="https://blockchain.info/Resources/info.png"></a>
<h4 class="page-header">Send Via Email<br/><small>Use the form below to send bitcoin's to an email address.</small></h4>
<div class="form-horizontal">
<div class="controls">
<img src="https://blockchain.info/Resources/email.png" style="padding-bottom:25px">
</div>
<div class="recipient-container">
<div class="recipient">
<div class="control-group">
<label class="control-label pop" title="Email Address" data-content="This is the email address of the person you wish to send bitcoins to.">To:</label>
<div class="controls">
<input placeholder="Email Address" name="send-to-email" type="text"/>
<p class="help-block">Enter The Email Address of the Recipient</p>
</div>
</div>
<div class="control-group">
<label class="control-label pop" title="Amount" data-content="The Amount in Bitcoins to Send">Amount:</label>
<div class="controls">
<div class="input-prepend">
<span class="add-on btc-symbol"></span><input class="send-value span2" name="send-value" placeholder="0.0" type="text" style="width:90px;"/>
</div>
<b>=</b>
<div class="input-prepend">
<span class="add-on local-symbol"></span><input class="send-value-usd span2" placeholder="0.0" type="text" style="width:90px;"/>
</div>
<p class="help-block">Enter The Amount of Bitcoins to send</p>
</div>
</div>
</div>
</div>
<div class="form-actions">
<button class="send btn btn-success pop" title="Send Payment" data-content="Click Here to send payment. You will not be asked to review the transaction.">Send Payment</button>
<div class="progress" style="display:none;">
<div class="bar" style="width:10%"></div>
</div>
</div>
</div>
</div>
<div class="tab-pane" id="shared-coin">
<div class="well">
<a style="float:right;" href="https://blockchain.info/r?url=https%3A%2F%2Fsharedcoin.com" target="blank"><img src="https://blockchain.info/Resources/info.png"></a>
<h4 class="page-header">Shared Coin<br/><small>A privacy service that helps users create joint transactions</small></h4>
<div class="form-horizontal" style="max-width:660px">
<div class="control-group">
<label class="control-label">To:</label>
<div class="controls recipient-container">
<div class="recipient" style="margin-bottom:5px">
<span class="qrcodeicon"><input placeholder="Bitcoin Address" name="send-to-address" type="text"/><span></span></span>
<div class="input-prepend input-append">
<span class="add-on btc-symbol"></span><input class="send-value span2" name="send-value" style="width:90px;" placeholder="0.0" type="text"/><span class="add-on send-value-usd">$0</span>
</div>
</div>
</div>
</div>
<div class="control-group">
<div class="controls">
<div style="float:left;padding-bottom:7px;padding-right:7px">
<small>Total Value: <span class="amount-needed">0</span> (Available: <span class="amount-available">0</span>)</small>
</div>
<div style="float:right;padding-right:40px">
<img src="https://blockchain.info/Resources/remove.png" class="pop remove-recipient" style="display:none" title="Remove Recipient" data-content="Remove the last recipient."/> <img src="https://blockchain.info/Resources/add.png" class="pop add-recipient" title="Add Recipient" data-content="If you want to send bitcoins to multiple recipients at once click here to add another address"/>
</div>
</div>
</div>
<div class="control-group">
<label class="control-label pop">Privacy Required:</label>
<div class="controls">
<select name="privacy-required">
<option value="normal" selected>Normal</option>
<option value="higher">Higher</option>
</select>
<p class="help-block">
<small><input type="checkbox" name="shared-coin-donate" style="position:relative;bottom:4px;" checked> Check to donate a random percentage of between 0.5 and 1.0% of your transaction to help fund further improvements to Shared Coin and for improved privacy.</small>
</p>
</div>
</div>
<div class="form-actions">
<button class="send btn btn-primary pop" title="Review Payment" data-content="Click Here to review payment. You will be able to confirm or cancel the transaction.">Review Payment</button>
<p class="help-block send-options" style="padding-top:10px">
<b>Maximum Send Value:</b> <span></span><br />
<b>Minimum Send Value:</b> <span></span>
</p>
</div>
</div>
</div>
<div class="well">
<h4 style="margin-bottom: 5px">Something went wrong?</h4>
<p>When sending a shared coin transaction a number of intermediate addresses are used. If anything interupts the process or an error prevents the transaction from completing the coins may be left in an intermediate address. Click the button below to claim any coins left in intermediate addresses, this process can take several minutes to complete.</p>
<p>
<button class="btn" id="sharedcoin-recover">Recover Intermediate Addresses</button>
</p>
</div>
</div>
<div class="tab-pane well" id="send-custom">
<h4 class="page-header">Custom Transaction<br/><small>Use the form below to send a payment to one or more bitcoin addresses. You will be asked review your transaction before submission.</small></h4>
<div class="form-horizontal" style="max-width:660px" id="send-tx-custom-form">
<div class="control-group">
<label class="control-label pop" title="From Address" data-content="If required you can choose to send coins from a specific address in your wallet.">From:</label>
<div class="controls">
<select name="from" multiple="multiple"></select>
</div>
</div>
<div class="control-group">
<label class="control-label">To:</label>
<div class="controls recipient-container">
<div class="recipient" style="margin-bottom:5px">
<span class="qrcodeicon"><input placeholder="Bitcoin Address" name="send-to-address" type="text"/><span></span></span>
<div class="input-prepend input-append">
<span class="add-on btc-symbol"></span><input class="send-value span2" name="send-value" style="width:90px;" placeholder="0.0" type="text"/><span class="add-on send-value-usd">$0</span>
</div>
</div>
</div>
</div>
<div class="control-group">
<div class="controls">
<div style="float:left;padding-bottom:7px;padding-right:7px">
<small>Total Value: <span class="amount-needed">0</span> (Available: <span class="amount-available">0</span>)</small>
</div>
<div style="float:right;padding-right:40px">
<img src="https://blockchain.info/Resources/remove.png" class="pop remove-recipient" style="display:none" title="Remove Recipient" data-content="Remove the last recipient."/> <img src="https://blockchain.info/Resources/add.png" class="pop add-recipient" title="Add Recipient" data-content="If you want to send bitcoins to multiple recipients at once click here to add another address"/>
</div>
</div>
</div>
<div class="control-group">
<label class="control-label pop" title="Miners Fee" data-content="This fee will be sent to the bitcoin miners and can help your transaction be processed faster">Miners Fee:</label>
<div class="controls">
<div class="input-prepend input-append" style="width:220px">
<span class="add-on btc-symbol"></span><input class="span2" name="fees" placeholder="0.0" type="text" style="width:90px;"/><span class="add-on send-value-usd">$0</span>
</div>
</div>
</div>
<div class="control-group">
<label class="control-label pop" title="Change Address" data-content="Any Change From The Transaction will be sent back to this address">Change Address:</label>
<div class="controls">
<select name="change"></select>
</div>
</div>
<div class="control-group">
<label class="control-label pop" title="Public Note" data-content="Add a note to this transaction which will be viewable on blockchain.">Public Note:</label>
<div class="controls">
<textarea name="public-note" placeholder="This message will be visible when viewing the transaction on blockchain. Anyone can read it." style="width:100%;box-sizing:border-box;height:75px"></textarea>
</div>
</div>
<div class="form-actions">
<button class="reset btn">Reset Form</button>
<button class="send btn btn-primary pop" title="Review Payment" data-content="Click Here to review payment. You will be able to confirm or cancel the transaction.">Review Payment</button>
</div>
</div>
</div>
<div class="tab-pane well" id="address-book">
<h3>Address Book</h3>
<p>The address book contains a list of sending addresses. You can use it to store the bitcoin addresses of people you know or merchants you use frequently.</p>
<table class="table table-striped" id="address-book-tbl">
<thead>
<tr>
<th>Label</th>
<th>Bitcoin Address</th>
</tr>
</thead>
<tbody>
<tr>
<td>Blockchain.info</td>
<td class="addr-book-entry">1JArS6jzE3AJ9sZ3aFij1BmTcpFGgN86hA</td>
</tr>
</tbody>
</table>
<div class="form-actions">
<button id="add-address-book-entry-btn" class="btn btn-primary">Add New Entry</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="import-export" style="display: none;">
<div style="width:400px;margin: 50px auto;" class="well" id="export-warning">
<h2>Advanced Warning!</h2>
<p>This section allows you to make changes to your wallet which can be complicated and confusing. It is recommended only experienced Bitcoin Users proceed from here. You should have an understanding of what private keys are and how they relate to bitcoin addresses.</p>
<p align="right">
<button class="btn btn-primary" id="show-import-export">I Understand</button>
</p>
</div>
<div id="import-export-content" style="display:none;"></div>
</div>
</div>
<div id="main-password-modal" class="modal hide">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Main Password Needed</h3>
</div>
<div class="modal-body">
<p>This action requires you re-enter your main password. Please enter it carefully or you may be be logged out.</p>
<div style="width:290px;margin: 0 auto;">
<p><b>Main Password:</b></p><p><input placeholder="password" name="password" type="password"/></p>
</div>
</div>
<div class="modal-footer">
<div class="btn-group pull-right">
<button class="btn btn-secondary">Cancel</button> <button class="btn btn-primary">Continue</button>
</div>
</div>
</div>
<div id="second-password-modal" class="modal hide">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Second Password Needed</h3>
</div>
<div class="modal-body">
<p>This action requires that you enter your second password which is needed fully decrypt your wallet. You should never enter your second password on an untrusted computer. Use the onscreen keyboard to provide some protection from keyloggers.</p>
<p align="center"><input placeholder="password" name="password" type="password" style=""/></p>
<div style="width:435px;height:105px;margin:0 auto;" class="hidden-phone">
<ul class="vkeyboard">
<li class="symbol"><span class="off">`</span><span class="on">~</span></li>
<li class="symbol"><span class="off">1</span><span class="on">!</span></li>
<li class="symbol"><span class="off">2</span><span class="on">@</span></li>
<li class="symbol"><span class="off">3</span><span class="on">#</span></li>
<li class="symbol"><span class="off">4</span><span class="on">$</span></li>
<li class="symbol"><span class="off">5</span><span class="on">%</span></li>
<li class="symbol"><span class="off">6</span><span class="on">^</span></li>
<li class="symbol"><span class="off">7</span><span class="on">&</span></li>
<li class="symbol"><span class="off">8</span><span class="on">*</span></li>
<li class="symbol"><span class="off">9</span><span class="on">(</span></li>
<li class="symbol"><span class="off">0</span><span class="on">)</span></li>
<li class="symbol"><span class="off">-</span><span class="on">_</span></li>
<li class="symbol"><span class="off">=</span><span class="on">+</span></li>
<li class="delete lastitem">delete</li>
<li class="tab">tab</li>
<li class="letter">q</li>
<li class="letter">w</li>
<li class="letter">e</li>
<li class="letter">r</li>
<li class="letter">t</li>
<li class="letter">y</li>
<li class="letter">u</li>
<li class="letter">i</li>
<li class="letter">o</li>
<li class="letter">p</li>
<li class="symbol"><span class="off">[</span><span class="on">{</span></li>
<li class="symbol"><span class="off">]</span><span class="on">}</span></li>
<li class="symbol lastitem"><span class="off">\</span><span class="on">|</span></li>
<li class="capslock">caps lock</li>
<li class="letter">a</li>
<li class="letter">s</li>
<li class="letter">d</li>
<li class="letter">f</li>
<li class="letter">g</li>
<li class="letter">h</li>
<li class="letter">j</li>
<li class="letter">k</li>
<li class="letter">l</li>
<li class="symbol"><span class="off">;</span><span class="on">:</span></li>
<li class="symbol"><span class="off">'</span><span class="on">"</span></li>
<li class="return lastitem">return</li>
<li class="left-shift">shift</li>
<li class="letter">z</li>
<li class="letter">x</li>
<li class="letter">c</li>
<li class="letter">v</li>
<li class="letter">b</li>
<li class="letter">n</li>
<li class="letter">m</li>
<li class="symbol"><span class="off">,</span><span class="on"><</span></li>
<li class="symbol"><span class="off">.</span><span class="on">></span></li>
<li class="symbol"><span class="off">/</span><span class="on">?</span></li>
<li class="right-shift lastitem">shift</li>
</ul>
</div>
</div>
<div class="modal-footer">
<div class="btn-group pull-right">
<button class="btn btn-secondary">Cancel</button> <button class="btn btn-primary">Continue</button>
</div>
</div>
</div>
<div id="label-address-modal" class="modal hide">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Label Address</h3>
</div>
<div class="modal-body">
<p>Please enter a label for address <span class="address"></span></p>
<div class="form-horizontal">
<div class="control-group">
<label class="control-label">Label:</label>
<div class="controls">
<input name="label" placeholder="Label e.g. Savings" type="text" /><p class="help-block">A label is used to help you remember what this address is for. It can be the name of a person or company.</p>
</div>
</div>
<div class="control-group">
<label class="control-label">Make Public?</label>
<div class="controls">
<input name="make_public" type="checkbox" /><p class="help-block">By Default address labels are visible to you only. Public labels are publically visible on the blockchain website and can be viewed by anyone.</p>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="btn-group pull-right">
<button class="btn btn-secondary">Cancel</button> <button class="btn btn-primary">Save</button>
</div>
</div>
</div>
<div id="sign-message-modal" class="modal hide">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Sign Message</h3>
</div>
<div class="modal-body">
<p>Use this tool to sign a message which proves that you own an address. Only Sign Detailed Messages you fully agree with, never sign vague messages. Pressing Sign Message may cause your browser to become unresponsive for a few seconds.</p>
<div class="form-horizontal">
<div class="control-group">
<label class="control-label">Address:</label>
<div class="controls">
<p class="address"></p>
</div>
</div>
<div class="control-group">
<label class="control-label">Message:</label>
<div class="controls">
<textarea name="message" style="width:90%;height:100px;" placeholder="Enter the Message You Wish To Sign"></textarea>
</div>
</div>
<div class="control-group signature" style="display:none">
<label class="control-label">Signature:</label>
<div class="controls">
<p class="signature-result" style="word-wrap:break-word;width:90%;"></p>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="btn-group pull-right">
<button class="btn btn-secondary">Cancel</button>
<button class="btn btn-primary">Sign Message</button>
</div>
</div>
</div>
<div id="verify-message-modal" class="modal hide">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h3>Verify Message</h3>
</div>
<div class="modal-body">