45 lines
2.2 KiB
HTML
45 lines
2.2 KiB
HTML
<div class="backup" ng-controller="BackupController">
|
|
<h1>Backup & Delete </h1>
|
|
<div class="oh large-12 columns panel">
|
|
<h3><i class="fi-download m10r"></i> Backup </h3>
|
|
<p class="large-8 columns text-gray"> Its important to back up your wallet so that you can recover your wallet in case of disaster </p>
|
|
<div class="large-4 columns">
|
|
<a class="button primary expand" ng-click="downloadBackup()">Download File</a>
|
|
</div>
|
|
</div>
|
|
<div class="large-12 columns line-dashed-h m15b"> </div>
|
|
<div>
|
|
<div class="oh large-12 columns panel">
|
|
<h3><i class="fi-minus-circle m10r"></i> Delete Wallet </h3>
|
|
<p class="large-8 columns text-gray"> If all funds have been removed from your wallet and you do not wish to have the wallet data stored on your computer anymore, you can delete your wallet. </p>
|
|
<div class="large-4 columns">
|
|
<a class="button warning expand" ng-really-message="Are you sure to delete this wallet from this computer?" ng-really-click="deleteWallet()"> Delete</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="oh large-12 columns panel" ng-if="priv">
|
|
<h3><i class="fi-minus-circle m10r"></i> Master Private Key </h3>
|
|
<p class="large-8 columns text-gray"> Your master private key contains the information to sign <b>any</b> transaction on this wallet. Handle with care.
|
|
<div class="large-4 columns">
|
|
<a class="button expand" ng-click="showPriv=!showPriv">
|
|
<span ng-hide="showPriv">Show</span>
|
|
<span ng-hide="!showPriv">Hide</span>
|
|
</a>
|
|
</div>
|
|
<textarea class="text-gray" ng-hide="!showPriv">
|
|
{{priv}}
|
|
</textarea>
|
|
</p>
|
|
</div>
|
|
<div class="oh large-12 columns panel" ng-if="advanced">
|
|
<h3><i class="fi-minus-circle m10r"></i> Scan Wallet Addresses </h3>
|
|
<p class="large-8 columns text-gray"> This will scan the blockchain looking for addresses derived from your wallet, in case you have funds in addresses not yet generated (e.g.: you restored an old backup).
|
|
<div class="large-4 columns">
|
|
<a class="button expand" ng-click="updateIndexes()">
|
|
Scan
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|