Make wallet creation box more pleasant.
Don't use stressful red "warning" box for the totally normal process of creating a new wallet. Instead, use a plasant gray color. Also, update the text to be more human and less technical.
This commit is contained in:
parent
c9cfc6c330
commit
db979fc5a1
1 changed files with 6 additions and 6 deletions
12
index.html
12
index.html
|
|
@ -73,16 +73,16 @@
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div ng-if='$root.wallet && !$root.wallet.publicKeyRing.isComplete() && !loading'>
|
<div ng-if='$root.wallet && !$root.wallet.publicKeyRing.isComplete() && !loading'>
|
||||||
<div class="alert-box error radius" data-alert>
|
<div class="alert-box secondary radius" data-alert>
|
||||||
<i class="fi-alert"></i>
|
<i class="fi-info"></i>
|
||||||
Note: Your wallet is not complete yet.
|
Not all copayers have joined your wallet yet.
|
||||||
<span ng-show="$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers()>1">
|
<span ng-show="$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers()>1">
|
||||||
{{$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers() }} keys are
|
{{$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers() }} people have
|
||||||
</span>
|
</span>
|
||||||
<span ng-show="$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers()==1">
|
<span ng-show="$root.wallet.publicKeyRing.totalCopayers - $root.wallet.publicKeyRing.registeredCopayers()==1">
|
||||||
One key is
|
One person has
|
||||||
</span>
|
</span>
|
||||||
missing.
|
yet to join.
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="panel radius">
|
<div class="panel radius">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue