diff --git a/index.html b/index.html
index 8ebc2f12c..f5d0c1db6 100644
--- a/index.html
+++ b/index.html
@@ -64,17 +64,6 @@
Connecting to wallet...
-
-
-
Open a Existing Wallet
-
-
-
-
-
-
-
Join a Network Wallet
@@ -85,14 +74,35 @@
-
-
-
Create a New Wallet
-
-
-
+
+
+
+
Create a New Wallet
+
+
+
+
+
+
+
+
Open a Existing Wallet
+
+
+
+
+
+
+
+
+
+
@@ -127,6 +137,11 @@
+
@@ -152,11 +167,11 @@
-
Copayers ({{$root.wallet.network.connectedPeers.length}}/{{$root.wallet.publicKeyRing.requiredCopayers}})
+
Online Copayers: {{$root.wallet.network.connectedPeers.length}}
-
- You ({{$root.peerId}})
- {{copayer}}
+ You ({{copayer}})
+ {{copayer}}
diff --git a/js/controllers/signin.js b/js/controllers/signin.js
index a636dbab2..2e571f328 100644
--- a/js/controllers/signin.js
+++ b/js/controllers/signin.js
@@ -9,11 +9,8 @@ angular.module('copay.signin').controller('SigninController',
// $rootScope.peerId = peerData ? peerData.peerId : null;
$scope.loading = false;
- $scope.selectedWalletId = false;
-
- $scope.listWalletIds = function() {
- return walletFactory.getWalletIds();
- };
+ $scope.walletIds = walletFactory.getWalletIds();
+ $scope.selectedWalletId = $scope.walletIds?$scope.walletIds.shift():null;
$scope.create = function() {
$location.path('setup');
diff --git a/js/models/core/WalletFactory.js b/js/models/core/WalletFactory.js
index a871b4968..bd87ec1fd 100644
--- a/js/models/core/WalletFactory.js
+++ b/js/models/core/WalletFactory.js
@@ -156,7 +156,6 @@ WalletFactory.prototype.openRemote = function(peedId) {
opts.totalCopayers = totalCopayers;
var w = new Wallet(opts);
w.store();
- this.addWalletId(w.id);
return w;
};