67 lines
3.4 KiB
HTML
67 lines
3.4 KiB
HTML
<div class="signin" ng-controller="SigninController">
|
|
<div data-alert class="alert-box info radius" ng-show="loading && !failure">
|
|
<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i>
|
|
Authenticating and looking for peers...
|
|
</div>
|
|
<div ng-show="!loading">
|
|
<div class="row">
|
|
<div class="large-6 medium-8 small-12 large-centered medium-centered
|
|
columns" ng-show="!isHome && isOpen">
|
|
<h3>Open Wallet</h3>
|
|
<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>
|
|
<input type="password" class="form-control" placeholder="Your password" name="openPassword" ng-model="openPassword" required>
|
|
<a class="back-button" ng-click="backWallet()">« Back</a>
|
|
<button type="submit" class="button secondary radius" ng-disabled="openForm.$invalid || loading" loading="Opening">Open</button>
|
|
</form>
|
|
</div>
|
|
<div ng-show="isHome && wallets.length">
|
|
<h3>Open a wallet</h3>
|
|
<a ng-click="openWallet()" class="button secondary radius">Open</a>
|
|
</div>
|
|
<div ng-show="isHome && !wallets.length">
|
|
<h3>Create a new wallet</h3>
|
|
<a href="/setup" class="button secondary radius">Create</a>
|
|
</div>
|
|
<div class="large-6 medium-8 small-12 large-centered medium-centered
|
|
columns" ng-show="!isHome && isJoin">
|
|
<h3>Join a Wallet in Creation</h3>
|
|
<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="Your name (optional)" name="nickname" ng-model="nickname">
|
|
<input type="password" class="form-control"
|
|
placeholder="Choose your password" name="joinPassword"
|
|
ng-model="$parent.joinPassword"
|
|
check-strength="passwordStrength"
|
|
tooltip-html-unsafe="Password strength:
|
|
<i>{{passwordStrength}}</i><br/><span class='size-12'>Tip: Use lower and uppercase,
|
|
numbers and symbols</span>" tooltip-trigger="focus" required>
|
|
<a class="back-button" ng-click="backWallet()">« Back</a>
|
|
<button type="submit" class="button primary radius" ng-disabled="joinForm.$invalid || loading" loading="Joining">Join</button>
|
|
</form>
|
|
</div>
|
|
<div ng-show="isHome && !isJoin">
|
|
<h3>Join a Wallet in Creation</h3>
|
|
<a ng-click="joinWallet()" class="button secondary
|
|
radius">Join</a>
|
|
</div>
|
|
<div ng-show="isHome && wallets.length">
|
|
<h5>Create a wallet</h5>
|
|
<a href="/setup" class="button secondar radius">Create</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row" ng-show="isHome">
|
|
<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.
|
|
</p>
|
|
<div class="large-12 columns text-center line-dashed">
|
|
<a href="/settings">Settings</a> ·
|
|
<a href="/import">Import a backup</a>
|
|
</div>
|
|
</div>
|
|
</div> <!-- End !loading -->
|
|
</div>
|
|
|
|
|