Wallet/views/copayers.html

40 lines
1.5 KiB
HTML
Raw Normal View History

2014-07-24 15:31:07 -03:00
<div class="waiting-copayers" ng-controller="CopayersController">
<div ng-if='$root.wallet && $root.wallet.isReady()' ng-init="goToWallet()"></div>
2014-10-10 11:01:22 -03:00
<div class="row collapse">
<div class="large-12 columns">
2014-10-28 15:18:25 -03:00
<div ng-if="!$root.wallet.isReady()">
2014-10-27 16:13:06 -03:00
<h2>
2014-10-10 11:01:22 -03:00
<span translate>Waiting copayers for</span>
{{$root.wallet.getName()}}
<small>{{$root.wallet.requiredCopayers}}-{{'of'|translate}}-{{$root.wallet.totalCopayers}}</small>
2014-10-27 16:13:06 -03:00
</h2>
2014-10-21 14:26:58 -03:00
<div class="panel oh">
2014-09-03 16:51:02 -03:00
<qrcode size="350" data="{{$root.wallet.getSecret()}}"></qrcode>
2014-10-10 11:01:22 -03:00
<div class="secret">
2014-10-27 16:13:06 -03:00
<h3 translate>Share this secret with your other copayers</h3>
{{$root.wallet.getSecret()}}
<span class="btn-copy" clip-copy="$root.wallet.getSecret()"></span>
</div>
2014-07-22 17:40:12 -03:00
</div>
</div>
2014-10-31 15:21:52 -03:00
<div class="panel p20">
2014-07-22 18:15:19 -03:00
<div class="oh">
2014-09-02 10:51:09 -03:00
<div ng-include="'views/includes/copayer.html'"></div>
2014-10-28 15:18:25 -03:00
<div ng-if="!$root.wallet.isReady()">
2014-07-22 18:15:19 -03:00
<img
2014-09-02 10:51:09 -03:00
class="waiting br100"
2014-07-22 18:15:19 -03:00
src="./img/satoshi.gif"
2014-07-24 15:31:07 -03:00
alt="Waiting Copayer"
2014-07-22 18:15:19 -03:00
width="70">
<p class="size-12 text-white text-light m0">
2014-07-22 17:40:12 -03:00
<i class="fi-loop icon-rotate spinner"></i>
<span translate>Waiting...</span>
2014-07-22 18:15:19 -03:00
</p>
</div>
</div>
2014-07-22 17:40:12 -03:00
</div>
</div>
</div> <!-- end of row -->
</div>