remove columns
This commit is contained in:
parent
c4e32c32db
commit
1b44e8eec7
1 changed files with 46 additions and 52 deletions
|
|
@ -1,12 +1,10 @@
|
||||||
<div class="signin" ng-controller="SigninController">
|
<div class="signin" ng-controller="SigninController">
|
||||||
<div data-alert class="alert-box info radius" ng-show="loading && !failure">
|
<div data-alert class="alert-box info" ng-show="loading && !failure">
|
||||||
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i>
|
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i>
|
||||||
Authenticating and looking for peers...
|
Authenticating and looking for peers...
|
||||||
</div>
|
</div>
|
||||||
<div ng-show="!loading">
|
<div ng-show="!loading">
|
||||||
<div class="row">
|
<div ng-show="!isHome && isOpen">
|
||||||
<div class="large-6 medium-8 small-12 large-centered medium-centered
|
|
||||||
columns" ng-show="!isHome && isOpen">
|
|
||||||
<h3>Open Wallet</h3>
|
<h3>Open Wallet</h3>
|
||||||
<form name="openForm" ng-submit="open(openForm)" novalidate>
|
<form name="openForm" ng-submit="open(openForm)" novalidate>
|
||||||
<select class="form-control" ng-model="selectedWalletId" ng-options="w.id as w.show for w in wallets" required>
|
<select class="form-control" ng-model="selectedWalletId" ng-options="w.id as w.show for w in wallets" required>
|
||||||
|
|
@ -24,8 +22,7 @@
|
||||||
<h3>Create a new wallet</h3>
|
<h3>Create a new wallet</h3>
|
||||||
<a href="/setup" class="button secondary radius">Create</a>
|
<a href="/setup" class="button secondary radius">Create</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="large-6 medium-8 small-12 large-centered medium-centered
|
<div ng-show="!isHome && isJoin">
|
||||||
columns" ng-show="!isHome && isJoin">
|
|
||||||
<h3>Join a Wallet in Creation</h3>
|
<h3>Join a Wallet in Creation</h3>
|
||||||
<form name="joinForm" ng-submit="join(joinForm)" novalidate>
|
<form name="joinForm" ng-submit="join(joinForm)" novalidate>
|
||||||
<input type="text" class="form-control" placeholder="Paste wallet secret here" name="connectionId" ng-model="connectionId" wallet-secret required>
|
<input type="text" class="form-control" placeholder="Paste wallet secret here" name="connectionId" ng-model="connectionId" wallet-secret required>
|
||||||
|
|
@ -50,17 +47,14 @@
|
||||||
<h5>Create a wallet</h5>
|
<h5>Create a wallet</h5>
|
||||||
<a href="/setup" class="button secondar radius">Create</a>
|
<a href="/setup" class="button secondar radius">Create</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row" ng-show="isHome">
|
<div ng-show="isHome">
|
||||||
<p class="text-gray">
|
<p class="text-gray">
|
||||||
Copay is a free, open-source, multisignature bitcoin wallet. A single-owner bitcoin wallet's security depends on carefully securing the private keys. With copay you can have multiple people controlling the funds, using bitcoin's multisignature functionality, requiring no trust in any third party.
|
Copay is a free, open-source, multisignature bitcoin wallet. A single-owner bitcoin wallet's security depends on carefully securing the private keys. With copay you can have multiple people controlling the funds, using bitcoin's multisignature functionality, requiring no trust in any third party.
|
||||||
</p>
|
</p>
|
||||||
<div class="large-12 columns text-center line-dashed">
|
|
||||||
<a href="/settings">Settings</a> ·
|
<a href="/settings">Settings</a> ·
|
||||||
<a href="/import">Import a backup</a>
|
<a href="/import">Import a backup</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div> <!-- End !loading -->
|
</div> <!-- End !loading -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue