creating a wallet

This commit is contained in:
Gustavo Maximiliano Cortez 2014-10-10 10:45:29 -03:00 committed by Matias Alejo Garcia
commit 3f9686bb04
2 changed files with 39 additions and 47 deletions

View file

@ -159,10 +159,7 @@ input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill, inpu
} }
.home label, .home label,
.createProfile label, .createProfile label {
.join label,
.open label,
.setup label {
font-size: 0.875rem; font-size: 0.875rem;
color: #fff; color: #fff;
font-weight: 100; font-weight: 100;
@ -194,10 +191,6 @@ a:hover {
.home select, .home select,
.createProfile select, .createProfile select,
.open select,
.join select,
.setup select,
.import select,
.settings select { .settings select {
background: #2C3E50 !important; background: #2C3E50 !important;
border: 0 !important; border: 0 !important;
@ -254,7 +247,7 @@ a:hover {
background-color: #F8F8FB; background-color: #F8F8FB;
} }
.home, .createProfile, .open, .join, .waiting-copayers, .setup, .import, .settings { .home, .createProfile, .settings {
margin-top: 15%; margin-top: 15%;
color: #fff; color: #fff;
} }

View file

@ -7,11 +7,8 @@
<form name="setupForm" ng-submit="create(setupForm)" novalidate> <form name="setupForm" ng-submit="create(setupForm)" novalidate>
<h1>{{'Create Wallet'|translate}}</h1> <h1>{{'Create Wallet'|translate}}</h1>
<div class="row collapse m0"> <div class="row">
<div class="large-6 columns"> <div class="large-12 columns">
<div class="box-setup oh">
<img src="img/step-1.png" alt="Step 1" width="157" class="right m15t" ng-if="!isSetupWalletPage && !isMobile">
<h1 translate class="text-secondary line-sidebar-b">Create new wallet</h1>
<label><span translate>Wallet name</span> <label><span translate>Wallet name</span>
<input type="text" placeholder="{{'Family vacation funds'|translate}}" class="form-control" ng-model="walletName"> <input type="text" placeholder="{{'Family vacation funds'|translate}}" class="form-control" ng-model="walletName">
</label> </label>
@ -36,13 +33,15 @@
</div> </div>
<p translate class="comment" ng-show="totalCopayers>1">(*) The limits are imposed by the bitcoin network.</p> <p translate class="comment" ng-show="totalCopayers>1">(*) The limits are imposed by the bitcoin network.</p>
<div class="m10b">
<a class="expand small" ng-click="hideAdv=!hideAdv"> <a class="expand small" ng-click="hideAdv=!hideAdv">
<i class="fi-widget m3r"></i> <i class="fi-widget m3r"></i>
<span translate ng-hide="!hideAdv">Show</span> <span translate ng-hide="!hideAdv">Show</span>
<span translate ng-hide="hideAdv">Hide</span> <span translate ng-hide="hideAdv">Hide</span>
<span translate>advanced options</span> <span translate>advanced options</span>
</a> </a>
<div ng-hide="hideAdv" class="m10t"> </div>
<div ng-hide="hideAdv">
<input id="network-name" type="checkbox" ng-model="networkName" ng-true-value="testnet" ng-false-value="livenet" class="form-control" ng-checked="networkName == 'testnet' ? true : false"> <input id="network-name" type="checkbox" ng-model="networkName" ng-true-value="testnet" ng-false-value="livenet" class="form-control" ng-checked="networkName == 'testnet' ? true : false">
<label for="network-name" translate>Use test network</label> <label for="network-name" translate>Use test network</label>