2014-12-02 16:16:31 -03:00
< div class = "home" ng-controller = "HomeController" ng-init = "init()" >
2014-09-30 15:28:02 -03:00
2014-12-11 16:07:43 -03:00
< div ng-show = "$root.starting" >
< div ng-include = "'views/includes/loading.html'" ng-init = "title = 'Accessing your profile'" > < / div >
2014-09-04 16:23:37 -03:00
< / div >
2014-11-19 15:45:08 -03:00
2014-12-09 13:58:23 -03:00
< div class = "large-4 large-centered medium-6 medium-centered columns" ng-show = "!$root.starting" >
2014-12-03 12:40:13 -03:00
< div class = "logo-setup" ng-show = "!$root.iden" >
2014-12-10 12:10:04 -03:00
< img src = "img/logo-negative-beta.svg" alt = "Cop ay" width = "100" >
2014-12-08 03:16:51 -03:00
< div ng-include = "'views/includes/version.html'" > < / div >
2014-07-23 17:10:02 -03:00
< / div >
2014-11-04 15:56:50 -03:00
2014-12-09 09:03:26 -03:00
< div class = "p10 bg-success m20b text-white" ng-show = "confirmedEmail" >
2014-10-30 12:06:48 -03:00
< div class = "left" >
2014-11-01 21:34:03 -03:00
< i class = "size-36 fi-check m10r" > < / i >
2014-10-30 12:06:48 -03:00
< / div >
2014-11-01 21:34:03 -03:00
< div class = "size-14" >
< h3 >
Your email was confimed!
< / h3 >
Please sign in to access your wallets
2014-10-30 12:06:48 -03:00
< / div >
< / div >
2014-11-20 01:06:30 -03:00
2014-12-05 18:08:09 -03:00
< div ng-if = "askForPin" >
2014-12-10 12:10:04 -03:00
< div class = "clipo" >
< img src = "img/clipo-pin.png" alt = "clipo" width = "380" >
< / div >
2014-12-05 15:10:48 -03:00
2014-12-03 03:03:16 -03:00
< div class = "box-notification" ng-show = "error" >
< div class = "box-icon error" >
< i class = "fi-x size-24" > < / i >
2014-12-05 15:10:48 -03:00
< / div >
2014-12-03 03:03:16 -03:00
< span class = "text-warning size-14" >
{{error|translate}}
< / span >
< / div >
2014-12-11 18:13:13 -03:00
< form name = "setPinForm" ng-model = "setPinForm" novalidate >
2014-12-03 13:44:55 -03:00
< div class = "input" ng-show = "askForPin == 1" >
2014-12-05 15:10:48 -03:00
< input id = "newpin" type = "tel" ng-model = "newpin" class = "form-control" ng-maxlength = "4" ng-minlength = "4" maxlength = "4" ng-pattern = "/^[0-9]{1,4}$/" placeholder = "PIN" name = "newpin" required show-focus = "askForPin == 1" >
2014-12-02 16:16:31 -03:00
< i class = "icon-locked" > < / i >
< / div >
2014-12-03 13:44:55 -03:00
< div class = "input" ng-show = "askForPin == 2" >
2014-12-05 15:10:48 -03:00
< input id = "repeatpin" type = "tel" ng-model = "repeatpin" class = "form-control" ng-maxlength = "4" ng-minlength = "4" maxlength = "4" ng-pattern = "/^[0-9]{1,4}$/" placeholder = "Confirm your PIN" name = "repeatpin" required show-focus = "askForPin == 2" >
2014-12-02 16:16:31 -03:00
< i class = "icon-locked" > < / i >
< / div >
2014-12-05 18:08:09 -03:00
< div class = "row collapse" >
2014-12-03 17:09:59 -03:00
< div class = "large-6 medium-6 small-6 columns" >
< a class = "button secondary radius m0" ng-click = "openWallets()" >
< span translate > Skip< / span >
< / a >
< / div >
< div class = "large-6 medium-6 small-6 columns text-right" >
2014-12-11 18:13:13 -03:00
< button translate ng-click = "createPin(setPinForm.repeatpin.$modelValue)" class = "button primary radius expand m0"
ng-disabled="setPinForm.$invalid || error">
2014-12-05 15:10:48 -03:00
OK
2014-12-03 17:09:59 -03:00
< / button >
< / div >
2014-12-03 03:03:16 -03:00
< / div >
2014-12-03 17:09:59 -03:00
2014-12-05 15:10:48 -03:00
< / form >
2014-12-02 16:16:31 -03:00
< / div >
2014-12-08 05:33:12 -03:00
< div ng-if = '$root.hasPin && !$root.iden' >
2014-12-10 12:10:04 -03:00
< div class = "clipo" >
< img src = "img/clipo-pin-enter.png" alt = "clipo" width = "300" >
< / div >
2014-12-03 16:01:22 -03:00
< form name = "pinForm" novalidate >
2014-12-03 03:03:16 -03:00
< div class = "box-notification" ng-show = "error" >
< div class = "box-icon error" >
< i class = "fi-x size-24" > < / i >
2014-12-05 15:10:48 -03:00
< / div >
2014-12-03 03:03:16 -03:00
< span class = "text-warning size-14" >
{{error|translate}}
< / span >
< / div >
2014-12-02 16:16:31 -03:00
< div class = "input" >
2014-12-05 15:10:48 -03:00
< input id = "pin" type = "tel" ng-model = "pin" class = "form-control" ng-maxlength = "4" ng-minlength = "4" maxlength = "4" ng-pattern = "/^[0-9]{1,4}$/" placeholder = "Pin number" name = "pin" required >
2014-12-02 16:16:31 -03:00
< i class = "icon-locked" > < / i >
< / div >
2014-12-03 17:09:59 -03:00
2014-12-05 18:08:09 -03:00
< div class = "row collapse" >
2014-12-03 17:09:59 -03:00
< div class = "large-6 medium-6 small-6 columns" >
< a class = "button warning radius m0" ng-click = "pinLogout()" >
< i class = "icon-power" > < / i >
< span translate > Logout< / span >
< / a >
< / div >
< div class = "large-6 medium-6 small-6 columns text-right" >
2014-12-11 18:13:13 -03:00
< button translate ng-click = "openWithPin(pinForm.pin.$modelValue)" class = "button primary radius expand m0"
2014-12-11 03:41:28 -03:00
ng-disabled="pinForm.$invalid || error">
2014-12-05 15:10:48 -03:00
Sign in
2014-12-03 17:09:59 -03:00
< / button >
< / div >
2014-12-05 15:10:48 -03:00
< / div >
< / form >
2014-12-02 16:16:31 -03:00
< / div >
2014-12-06 15:30:32 -03:00
< div ng-if = '!$root.hasPin && !askForPin && !$root.iden' >
2014-12-05 16:53:50 -03:00
< div class = "clipo" >
< img src = "img/clipo-signin.png" alt = "clipo" width = "310" >
< / div >
2014-12-09 09:03:26 -03:00
< div class = "p10 m20b size-14 bg-success text-white" ng-show = "anyWallet && !confirmedEmail && !error" >
2014-12-05 16:53:50 -03:00
< div class = "left" >
< i class = "size-36 fi-alert m10r" > < / i >
< / div >
< b > Copay now needs a profile to access wallets.< / b >
You can import your current wallets after
2014-12-06 17:58:07 -03:00
< a class = "text-white" ng-click = "$root.go('/createProfile')" > creating your profile< / a >
2014-12-05 16:53:50 -03:00
< / div >
2014-12-09 09:03:26 -03:00
< div class = "p10 bg-success m20b text-white" ng-show = "pendingPayment" >
2014-12-05 16:53:50 -03:00
< div class = "left" >
< i class = "size-36 m10r" > < / i >
< / div >
< div class = "size-14" >
Please sign in to make the payment
< / div >
< / div >
2014-12-02 16:16:31 -03:00
< form name = "loginForm" ng-submit = "openWithCredentials(loginForm)" novalidate >
2014-12-07 20:46:20 -03:00
< div class = "box-notification" ng-show = "error" >
< div class = "box-icon error" >
< i class = "fi-x size-24" > < / i >
< / div >
< span class = "text-warning size-14" >
{{error|translate}}
< / span >
< / div >
2014-12-05 15:21:35 -03:00
< div class = "input" ng-if = "!usingLocalStorage" >
2014-12-05 15:10:48 -03:00
< input type = "email" ng-model = "email" class = "form-control" name = "email" placeholder = "Email" required show-focus = "!isMobile" >
2014-11-28 16:27:21 -03:00
< i class = "icon-email" > < / i >
2014-11-27 14:52:57 -03:00
< / div >
2014-12-05 15:21:35 -03:00
< div class = "input" ng-if = "usingLocalStorage" >
< input type = "text" ng-model = "email" class = "form-control" name = "email" placeholder = "Username" required show-focus = "!isMobile" >
< i class = "icon-person" > < / i >
< / div >
2014-11-27 18:33:07 -03:00
< div class = "input" >
2014-12-05 15:10:48 -03:00
< input type = "password" ng-model = "password" class = "form-control" name = "password" placeholder = "Password" required >
2014-11-28 16:27:21 -03:00
< i class = "icon-locked" > < / i >
2014-11-27 14:52:57 -03:00
< / div >
2014-12-05 15:10:48 -03:00
2014-12-11 18:13:13 -03:00
< button translate type = "submit" class = "button primary radius expand m0" ng-disabled = "loginForm.$invalid" >
2014-12-05 15:10:48 -03:00
Sign in
2014-10-20 20:46:49 -03:00
< / button >
2014-10-15 16:10:40 -03:00
< / form >
2014-12-02 16:16:31 -03:00
2014-12-09 16:55:32 -03:00
< div ng-if = "usingLocalStorage" class = "text-gray size-12 m10v" >
2014-12-05 15:10:48 -03:00
* Using this device storage. Change to cloud storage on 'settings'.
< / div >
2014-10-15 16:10:40 -03:00
< div class = "box-setup-footer" >
2014-12-06 17:23:26 -03:00
< div class = "right" >
2014-12-06 17:54:02 -03:00
< a class = "button-setup text-gray" ng-click = "$root.go('/settings')" >
2014-12-06 17:23:26 -03:00
< i class = "icon-wrench" > < / i >
< span translate > Settings< / span >
< / a >
< / div >
2014-10-31 19:39:01 -03:00
< div class = "left m10r" >
2014-12-06 17:54:02 -03:00
< a class = "button-setup text-gray" ng-click = "$root.go('/createProfile')" >
2014-11-28 16:27:21 -03:00
< i class = "icon-person" > < / i >
2014-12-06 17:54:02 -03:00
< span translate > Create profile< / span >
2014-10-20 20:46:49 -03:00
< / a >
2014-10-15 16:10:40 -03:00
< / div >
2014-10-31 19:39:01 -03:00
< div class = "left" >
2014-12-06 17:54:02 -03:00
< a class = "button-setup text-gray" ng-click = "$root.go('/importProfile')" >
2014-11-28 16:27:21 -03:00
< i class = "icon-upload" > < / i >
2014-12-06 17:54:02 -03:00
< span translate > Import< / span >
2014-10-31 19:39:01 -03:00
< / a >
< / div >
2014-07-23 17:10:02 -03:00
< / div >
< / div >
< / div >
< / div >