2014-03-19 13:17:18 -03:00
<!doctype html>
2014-05-14 11:27:18 -03:00
< html lang = "en" ng-csp >
2014-07-16 17:59:28 -03:00
< head >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" >
2014-07-29 14:12:50 -03:00
< meta name = "viewport" content = "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" >
2014-07-16 17:59:28 -03:00
< title > Copay - Multisignature Wallet< / title >
2014-09-26 16:58:48 -03:00
< style type = "text/css" >
.loadingpage {
height:100%;
overflow-y: auto;
overflow-x: none;
background: #2C3E50;
padding-top: 20%;
text-align: center;
}
2014-12-16 17:21:37 -03:00
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak],
.ng-cloak, .x-ng-cloak,
.ng-hide:not(.ng-hide-animate) {
display: none !important;
}
ng\:form {
display: block;
2014-09-26 16:58:48 -03:00
}
< / style >
2014-07-16 17:59:28 -03:00
< link rel = "shortcut icon" href = "img/favicon.ico" >
< / head >
2014-12-08 05:34:59 -03:00
< body
ng-controller="IndexController"
2014-12-11 20:10:03 -03:00
ng-swipe-disable-mouse
2014-12-08 05:34:59 -03:00
ng-swipe-left="swipe()"
ng-swipe-right="swipe(true)">
2014-12-02 10:40:24 -03:00
2014-09-26 16:58:48 -03:00
< div id = "loading" class = "loadingpage" >
< img src = "img/ajax-loader.gif" alt = "Loading..." >
< / div >
< div ng-cloak class = "page ng-cloak" >
2014-11-19 15:45:08 -03:00
2014-12-11 16:07:43 -03:00
< div ng-show = "signingOut" >
< div ng-include = "'views/includes/loading.html'" ng-init = "title = 'Signing out'" > < / div >
2014-11-04 10:31:34 -03:00
< / div >
2014-11-19 15:45:08 -03:00
2014-11-27 14:24:37 -03:00
< div ng-show = "sessionExpired" class = "session-expired" >
2014-12-04 20:38:21 -03:00
< i class = "fi-clock size-72 text-gray" > < / i >
2014-11-27 14:24:37 -03:00
< p class = "text-gray size-18" > Your session is about to expire due to inactivity in {{countdown}} seconds< / p >
< / div >
2014-12-07 12:40:59 -03:00
< div class = "off-canvas-wrap" id = "off-canvas-wrap" ng-show = "!signingOut" >
2014-07-23 19:49:06 -03:00
< div class = "inner-wrap" >
2014-09-09 15:28:25 -03:00
< span class = "status" ng-if = "$root.reconnecting" >
2014-10-27 16:13:06 -03:00
< i class = "fi-loop icon-rotate" > < / i >
2014-11-07 18:41:45 -03:00
< span translate > < strong class = "size-16" > Network Error< / strong > .< br > Attempting to reconnect..< / span >
2014-09-09 15:28:25 -03:00
< / span >
2014-12-02 17:03:24 -03:00
< span class = "status" ng-if = "$root.needsEmailConfirmation" >
2014-12-18 18:27:25 -03:00
< a class = "text-white button warning tiny m0 right" ng-click = "resendVerificationEmail()" > Resend< / a >
2014-12-02 17:03:24 -03:00
< i class = "fi-alert size-36 left m20r" > < / i >
< span translate >
< strong class = "size-16" > Email not confirmed< / strong > .< br >
Please confirm your email address using the confirmation link at the message we sent you
< / span >
2014-12-01 17:21:39 -03:00
< / span >
2014-12-19 09:12:52 -03:00
< span class = "status" ng-if = "$root.pleaseConfirmEmail" >
< i class = "fi-alert size-36 left m20r" > < / i >
< span translate >
< strong class = "size-16" > Confirm your email address< / strong > .< br >
An email was just sent to {{$root.iden.getName()}}. Please click the link on it to confirm you own it. Unconfirmed profiles could be deleted from server.
< / span >
< a class = "close-notification text-warning" ng-click = "$root.pleaseConfirmEmail=null" > × < / a >
< / span >
2014-12-01 17:21:39 -03:00
2014-12-05 11:35:00 -03:00
< div ng-controller = "SidebarController" ng-show = "$root.iden && !$root.hideNavigation" >
2014-12-11 16:07:43 -03:00
< nav class = "tab-bar" >
2014-12-04 20:38:21 -03:00
< section class = "left-small" >
< a class = "left-off-canvas-toggle menu-icon" > < span > < / span > < / a >
< / section >
2014-12-17 19:36:35 -03:00
< section class = "right-small" ng-show = "$root.iden && $root.wallet.isComplete()" >
< a class = "p10" ng-click = "$root.go('more')" > < i class = "fi-widget size-24" > < / i > < / a >
2014-12-04 20:38:21 -03:00
< / section >
< section class = "middle tab-bar-section" >
2014-12-17 19:36:35 -03:00
< h1 class = "title ellipsis" ng-show = "$root.iden && $root.wallet" >
{{$root.wallet.getName()}}
2014-12-04 20:38:21 -03:00
< / h1 >
< / section >
< / nav >
2014-12-07 12:40:59 -03:00
< nav class = "left-off-canvas-menu" ng-show = "$root.iden" >
2014-12-04 20:38:21 -03:00
< div ng-include = "'views/includes/sidebar-mobile.html'" > < / div >
2014-12-07 12:40:59 -03:00
< / nav >
2014-12-04 20:38:21 -03:00
< div
2014-12-05 11:35:00 -03:00
ng-if="$root.iden"
2014-12-04 20:38:21 -03:00
ng-include="'views/includes/sidebar.html'"
role='navigation'
class="sidebar">< / div >
< div class = "bottom-bar" ng-if = "$root.wallet & &
$root.wallet.isComplete() & & !$root.wallet.isLocked">
< div ng-include = "'views/includes/bottombar-mobile.html'" > < / div >
< / div >
< / div >
2014-07-23 19:49:06 -03:00
2014-12-04 20:38:21 -03:00
< div notifications = "right top" > < / div >
2014-07-23 19:49:06 -03:00
2014-10-27 16:13:06 -03:00
< div
ng-controller="HeadController"
class="head show-for-large-up"
ng-include="'views/includes/head.html'"
2014-12-03 12:40:13 -03:00
ng-if="$root.iden"
ng-class="{'dni':$root.hideNavigation}"
>< / div >
2014-10-27 16:13:06 -03:00
2014-12-08 03:16:51 -03:00
< section ng-class = "{'main':$root.iden && !$root.starting && !$root.hideNavigation}" ng-view > < / section >
2014-11-22 17:34:28 -03:00
2014-07-23 19:49:06 -03:00
< a class = "exit-off-canvas" > < / a >
< / div >
< / div >
2014-03-26 09:18:42 -03:00
< / div >
2014-10-29 09:33:16 -03:00
2014-09-26 16:58:48 -03:00
< link rel = "stylesheet" href = "css/vendors.min.css" >
< link rel = "stylesheet" href = "css/copay.min.css" >
2014-03-19 13:17:18 -03:00
2014-08-21 16:07:25 -03:00
< script src = "lib/vendors.js" > < / script >
< script src = "lib/angularjs-all.js" > < / script >
2014-07-16 17:59:28 -03:00
2014-09-26 11:09:23 -03:00
<!-- DO NOT DELETE THIS COMMET -->
<!-- PLACEHOLDER: CORDOVA SRIPT -->
2014-09-29 13:09:10 -03:00
< script src = "init.js" > < / script >
2014-07-16 17:59:28 -03:00
< script src = "config.js" > < / script >
< script src = "js/copayBundle.js" > < / script >
2014-08-21 16:07:25 -03:00
< script src = "js/copayMain.js" > < / script >
2014-07-16 17:59:28 -03:00
< / body >
2014-03-14 17:38:27 -03:00
< / html >