copay/views/copayers.html

41 lines
1.5 KiB
HTML
Raw Normal View History

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