remove columns
This commit is contained in:
parent
c4e32c32db
commit
1b44e8eec7
1 changed files with 46 additions and 52 deletions
|
|
@ -1,65 +1,59 @@
|
||||||
<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
|
<h3>Open Wallet</h3>
|
||||||
columns" ng-show="!isHome && isOpen">
|
<form name="openForm" ng-submit="open(openForm)" novalidate>
|
||||||
<h3>Open Wallet</h3>
|
<select class="form-control" ng-model="selectedWalletId" ng-options="w.id as w.show for w in wallets" required>
|
||||||
<form name="openForm" ng-submit="open(openForm)" novalidate>
|
</select>
|
||||||
<select class="form-control" ng-model="selectedWalletId" ng-options="w.id as w.show for w in wallets" required>
|
<input type="password" class="form-control" placeholder="Your password" name="openPassword" ng-model="openPassword" required>
|
||||||
</select>
|
<a class="back-button" ng-click="backWallet()">« Back</a>
|
||||||
<input type="password" class="form-control" placeholder="Your password" name="openPassword" ng-model="openPassword" required>
|
<button type="submit" class="button secondary radius" ng-disabled="openForm.$invalid || loading" loading="Opening">Open</button>
|
||||||
<a class="back-button" ng-click="backWallet()">« Back</a>
|
</form>
|
||||||
<button type="submit" class="button secondary radius" ng-disabled="openForm.$invalid || loading" loading="Opening">Open</button>
|
</div>
|
||||||
</form>
|
<div ng-show="isHome && wallets.length">
|
||||||
</div>
|
<h3>Open a wallet</h3>
|
||||||
<div ng-show="isHome && wallets.length">
|
<a ng-click="openWallet()" class="button secondary radius">Open</a>
|
||||||
<h3>Open a wallet</h3>
|
</div>
|
||||||
<a ng-click="openWallet()" class="button secondary radius">Open</a>
|
<div ng-show="isHome && !wallets.length">
|
||||||
</div>
|
<h3>Create a new wallet</h3>
|
||||||
<div ng-show="isHome && !wallets.length">
|
<a href="/setup" class="button secondary radius">Create</a>
|
||||||
<h3>Create a new wallet</h3>
|
</div>
|
||||||
<a href="/setup" class="button secondary radius">Create</a>
|
<div ng-show="!isHome && isJoin">
|
||||||
</div>
|
<h3>Join a Wallet in Creation</h3>
|
||||||
<div class="large-6 medium-8 small-12 large-centered medium-centered
|
<form name="joinForm" ng-submit="join(joinForm)" novalidate>
|
||||||
columns" ng-show="!isHome && isJoin">
|
<input type="text" class="form-control" placeholder="Paste wallet secret here" name="connectionId" ng-model="connectionId" wallet-secret required>
|
||||||
<h3>Join a Wallet in Creation</h3>
|
<input type="text" class="form-control" placeholder="Your name (optional)" name="nickname" ng-model="nickname">
|
||||||
<form name="joinForm" ng-submit="join(joinForm)" novalidate>
|
<input type="password" class="form-control"
|
||||||
<input type="text" class="form-control" placeholder="Paste wallet secret here" name="connectionId" ng-model="connectionId" wallet-secret required>
|
placeholder="Choose your password" name="joinPassword"
|
||||||
<input type="text" class="form-control" placeholder="Your name (optional)" name="nickname" ng-model="nickname">
|
ng-model="$parent.joinPassword"
|
||||||
<input type="password" class="form-control"
|
check-strength="passwordStrength"
|
||||||
placeholder="Choose your password" name="joinPassword"
|
tooltip-html-unsafe="Password strength:
|
||||||
ng-model="$parent.joinPassword"
|
<i>{{passwordStrength}}</i><br/><span class='size-12'>Tip: Use lower and uppercase,
|
||||||
check-strength="passwordStrength"
|
numbers and symbols</span>" tooltip-trigger="focus" required>
|
||||||
tooltip-html-unsafe="Password strength:
|
<a class="back-button" ng-click="backWallet()">« Back</a>
|
||||||
<i>{{passwordStrength}}</i><br/><span class='size-12'>Tip: Use lower and uppercase,
|
<button type="submit" class="button primary radius" ng-disabled="joinForm.$invalid || loading" loading="Joining">Join</button>
|
||||||
numbers and symbols</span>" tooltip-trigger="focus" required>
|
</form>
|
||||||
<a class="back-button" ng-click="backWallet()">« Back</a>
|
</div>
|
||||||
<button type="submit" class="button primary radius" ng-disabled="joinForm.$invalid || loading" loading="Joining">Join</button>
|
<div ng-show="isHome && !isJoin">
|
||||||
</form>
|
<h3>Join a Wallet in Creation</h3>
|
||||||
</div>
|
<a ng-click="joinWallet()" class="button secondary
|
||||||
<div ng-show="isHome && !isJoin">
|
radius">Join</a>
|
||||||
<h3>Join a Wallet in Creation</h3>
|
</div>
|
||||||
<a ng-click="joinWallet()" class="button secondary
|
<div ng-show="isHome && wallets.length">
|
||||||
radius">Join</a>
|
<h5>Create a wallet</h5>
|
||||||
</div>
|
<a href="/setup" class="button secondar radius">Create</a>
|
||||||
<div ng-show="isHome && wallets.length">
|
|
||||||
<h5>Create a wallet</h5>
|
|
||||||
<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