Skip to content

Commit

Permalink
Add back buttons on the wallet creation wizard. Fixes #221
Browse files Browse the repository at this point in the history
  • Loading branch information
caedesvvv committed Jan 28, 2015
1 parent 29770f2 commit facf843
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/html/partials/new_wallet.html
Expand Up @@ -18,10 +18,13 @@ <h6>{{'Thanks for testing Darkwallet! Keep in mind this is alpha software. Use a
<form ng-submit="nextStep()">
<img src="../images/wallet.svg" style="width:40%; height:40%" />
<div class="row topmargin">
<div class="small-6 columns">
<div class="small-2 columns">
<a ng-click="previousStep()" class="button radius expand nomarginbottom">{{'Back'|_}}</a>
</div>
<div class="small-5 columns">
<button ng-click="form.create_or_restore='restore'" class="button radius expand nomarginbottom">{{'Restore from a seed'|_}}</button>
</div>
<div class="small-6 columns">
<div class="small-5 columns">
<button ng-click="form.create_or_restore='create'" class="button glow radius expand nomarginbottom">{{'Create a new wallet!'|_}}</button>
</div>
</div>
Expand All @@ -47,6 +50,7 @@ <h6>{{'Thanks for testing Darkwallet! Keep in mind this is alpha software. Use a
</div>
<div class="row">
<div class="small-12 columns text-right">
<a ng-click="previousStep()" class="button small radius nomarginbottom">{{'Back'|_}}</a>
<input type="submit" value="{{'Continue'|_}}" class="button small radius nomarginbottom" />
</div>
</div>
Expand All @@ -57,6 +61,7 @@ <h6>{{'Thanks for testing Darkwallet! Keep in mind this is alpha software. Use a
<p>{{'These 12 words are your wallet seed. It will unlock complete access to your bitcoins, without the need for any password, even if you can\'t access your computer anymore. The seed is essential to recover your wallet, so please write it down on a piece of paper before continuing.'|_}}</p>
<textarea readonly ng-model="form.mnemonic" class="seed"></textarea>
<div class="text-right">
<a ng-click="previousStep()" class="button small radius nomarginbottom">{{'Back'|_}}</a>
<input type="submit" value="{{'I\'m ready, continue!'|_}}" class="button small radius glow nomarginbottom">
</div>
</form>
Expand Down

0 comments on commit facf843

Please sign in to comment.