diff --git a/index.html b/index.html index e337dfde1..dc7f47cb5 100644 --- a/index.html +++ b/index.html @@ -37,7 +37,6 @@ - diff --git a/js/controllers/setup.js b/js/controllers/setup.js index 3ac730299..cd3811853 100644 --- a/js/controllers/setup.js +++ b/js/controllers/setup.js @@ -85,4 +85,10 @@ angular.module('copayApp.controllers').controller('SetupController', }); }; + $scope.isSetupWalletPage = 0; + + $scope.setupWallet = function() { + $scope.isSetupWalletPage = !$scope.isSetupWalletPage; + }; + }); diff --git a/js/controllers/signin.js b/js/controllers/signin.js index 6503d46ab..3c7a097d8 100644 --- a/js/controllers/signin.js +++ b/js/controllers/signin.js @@ -75,4 +75,26 @@ angular.module('copayApp.controllers').controller('SigninController', }); }); } + + $scope.isHome = 1; + $scope.isJoin = 0; + $scope.isOpen = 0; + + $scope.backWallet = function() { + $scope.isHome = 1; + $scope.isJoin = 0; + $scope.isOpen = 0; + }; + + $scope.openWallet = function() { + $scope.isHome = 0; + $scope.isJoin = 0; + $scope.isOpen = 1; + }; + + $scope.joinWallet = function() { + $scope.isHome = 0; + $scope.isOpen = 0; + $scope.isJoin = 1; + }; }); diff --git a/views/includes/copayers.html b/views/includes/copayers.html index c1961c164..d331b2b29 100644 --- a/views/includes/copayers.html +++ b/views/includes/copayers.html @@ -1,70 +1,62 @@
-
-
-
-

Share this secret with your other copayers -

-
-
-
-

{{$root.wallet.getSecret()}}

-
-
-
-
{{$root.wallet.getName()}}
-

{{$root.wallet.requiredCopayers}}-of-{{$root.wallet.totalCopayers}} wallet

-
-
-
+
+

Share this secret with your other copayers

+
+

{{$root.wallet.getSecret()}}

-
-
-
-
-
People on this wallet
-
-
-

Waiting for other copayers to join

-
+

+ New Wallet Created +

+

Waiting Copayers for {{$root.wallet.getName()}}

+

+ {{$root.wallet.getName()}} - + {{$root.wallet.requiredCopayers}}-of-{{$root.wallet.totalCopayers}} +

+ + {{$root.wallet.requiredCopayers}}-of-{{$root.wallet.totalCopayers}} wallet + +
+ +
+ Waiting for other copayers to join +
-
-
-
-
-
- Download seed backup - - -
-
+
+ Waiting for other + copayers to make a Backup
+ + Download seed backup + +
diff --git a/views/setup.html b/views/setup.html index b8c83f8fa..67aadbb05 100644 --- a/views/setup.html +++ b/views/setup.html @@ -8,10 +8,10 @@

Create new wallet

-