copay/views/copayers.html

45 lines
1.5 KiB
HTML
Raw Normal View History

2014-12-09 06:52:01 -08:00
<div ng-controller="CopayersController" ng-init="init()">
2014-11-26 13:50:58 -08:00
<div class="row hide-for-large-up">
<div class="medium-12 small-12 columns">
<h1 translate>
Waiting copayers...
2014-11-26 13:50:58 -08:00
</h1>
</div>
</div>
<div class="row">
2014-10-10 07:01:22 -07:00
<div class="large-12 columns">
2014-11-29 19:31:17 -08:00
<div ng-if="!$root.wallet.isComplete()">
<div class="panel oh">
<h2 class="line-b">
Share this secret with your other copayers
2014-12-09 06:52:01 -08:00
<div class="right size-10">
<span ng-if="!$root.wallet.isShared()">Personal Wallet</span>
<span ng-if="$root.wallet.isShared()">
Multisignature wallet [{{$root.wallet.requiredCopayers}} of {{$root.wallet.totalCopayers}} ]
</span>
<span ng-if="$root.wallet.isTestnet()"> in TESTNET</span>
</div>
2014-10-27 12:13:06 -07:00
</h2>
<div class="text-center">
<qrcode size="250" data="{{secret}}"></qrcode>
2014-07-22 13:40:12 -07:00
</div>
<div class="secret m20t">
{{secret}}
2014-07-22 14:15:19 -07:00
</div>
2014-07-22 13:40:12 -07:00
</div>
</div>
<div class="panel oh">
2014-12-09 06:52:01 -08:00
<div ng-include="'views/includes/copayers.html'"></div>
2014-11-29 19:31:17 -08:00
<div class="copay-box" ng-if="!$root.wallet.isComplete()">
<span ng-include="'views/includes/photo.html'"></span>
<p class="size-12 text-white text-light m0">
<i class="fi-loop icon-rotate spinner"></i>
<span translate>Waiting...</span>
</p>
</div>
</div>
2014-07-22 13:40:12 -07:00
</div>
</div> <!-- end of row -->
</div>