improving UI and wording for signing page

This commit is contained in:
Manuel Araoz 2014-04-21 12:10:34 -03:00
commit 9779d5f6df
7 changed files with 28 additions and 27 deletions

View file

@ -82,18 +82,6 @@
Connecting to wallet...
</div>
<div ng-show="!loading">
<div class="row">
<div class="large-6 columns">
<h3>Join Wallet Creation</h3>
<input type="text" class="form-control" placeholder="Paste secret here"
ng-model="connectionId" autofocus>
</div>
<div class="large-3 columns">
<button class="button primary expand round" type="button" ng-click="join(connectionId)">Join</button>
</div>
</div>
<hr>
<div ng-show="!walletIds.length">
<div class="row">
<div class="large-6 columns">
@ -104,6 +92,19 @@
</div>
</div>
<hr>
<div class="row">
<div class="large-6 columns">
<h3>Join a Wallet in Creation</h3>
<input type="text" class="form-control" placeholder="Paste wallet secret here"
ng-model="connectionId" required ng-minlength="32" ng-maxlength="32" autofocus
>
</div>
<div class="large-3 columns">
<button class="button primary expand round" type="button" ng-click="join(connectionId)">Join</button>
</div>
</div>
<hr>
<div class="row">
<div class="text-center">
<a ng-click="import()">Import from file</a>
@ -113,7 +114,7 @@
<div ng-show="walletIds.length>0">
<div class="row">
<div class="large-6 columns">
<h3>Open Existing Wallet</h3>
<h3>Open Wallet</h3>
<select class="form-control" ng-model="selectedWalletId" ng-options="walletId for walletId in walletIds">
</select>
</div>