copay/index.html

130 lines
4.3 KiB
HTML
Raw Normal View History

2014-03-19 09:17:18 -07:00
<!doctype html>
2014-05-14 07:27:18 -07:00
<html lang="en" ng-csp>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
2014-07-29 10:12:50 -07:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Copay - Multisignature Wallet</title>
<style type="text/css">
.loadingpage {
height:100%;
overflow-y: auto;
overflow-x: none;
background: #2C3E50;
padding-top: 20%;
text-align: center;
}
2014-12-16 12:21:37 -08: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;
}
</style>
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body
ng-controller="IndexController"
2014-12-11 15:10:03 -08:00
ng-swipe-disable-mouse
ng-swipe-left="swipe()"
ng-swipe-right="swipe(true)">
2014-12-02 05:40:24 -08: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 10:45:08 -08:00
<div ng-show="signingOut">
<div ng-include="'views/includes/loading.html'" ng-init="title = 'Signing out'"></div>
</div>
2014-11-19 10:45:08 -08:00
<div ng-show="sessionExpired" class="session-expired">
<i class="fi-clock size-72 text-gray"></i>
<p class="text-gray size-18">Your session is about to expire due to inactivity in {{countdown}} seconds</p>
</div>
<div class="off-canvas-wrap" id="off-canvas-wrap" ng-show="!signingOut">
2014-07-23 15:49:06 -07:00
<div class="inner-wrap">
2014-09-09 11:28:25 -07:00
<span class="status" ng-if="$root.reconnecting">
2014-10-27 12:13:06 -07:00
<i class="fi-loop icon-rotate"></i>
2014-11-07 13:41:45 -08:00
<span translate> <strong class="size-16">Network Error</strong>.<br> Attempting to reconnect..</span>
2014-09-09 11:28:25 -07:00
</span>
2014-12-02 12:03:24 -08:00
<span class="status" ng-if="$root.needsEmailConfirmation">
2014-12-18 13:27:25 -08:00
<a class="text-white button warning tiny m0 right" ng-click="resendVerificationEmail()">Resend</a>
2014-12-02 12:03:24 -08: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 12:21:39 -08:00
</span>
2014-12-05 06:35:00 -08:00
<div ng-controller="SidebarController" ng-show="$root.iden && !$root.hideNavigation">
<nav class="tab-bar">
<section class="left-small">
<a class="left-off-canvas-toggle menu-icon" ><span></span></a>
</section>
2014-12-17 14:36:35 -08: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>
</section>
<section class="middle tab-bar-section">
2014-12-17 14:36:35 -08:00
<h1 class="title ellipsis" ng-show="$root.iden && $root.wallet">
{{$root.wallet.getName()}}
</h1>
</section>
</nav>
<nav class="left-off-canvas-menu" ng-show="$root.iden">
<div ng-include="'views/includes/sidebar-mobile.html'"></div>
</nav>
<div
2014-12-05 06:35:00 -08:00
ng-if="$root.iden"
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 15:49:06 -07:00
<div notifications="right top"></div>
2014-07-23 15:49:06 -07:00
2014-10-27 12:13:06 -07:00
<div
ng-controller="HeadController"
class="head show-for-large-up"
ng-include="'views/includes/head.html'"
2014-12-03 07:40:13 -08:00
ng-if="$root.iden"
ng-class="{'dni':$root.hideNavigation}"
></div>
2014-10-27 12:13:06 -07:00
<section ng-class="{'main':$root.iden && !$root.starting && !$root.hideNavigation}" ng-view></section>
2014-11-22 12:34:28 -08:00
2014-07-23 15:49:06 -07:00
<a class="exit-off-canvas"></a>
</div>
</div>
2014-03-26 05:18:42 -07:00
</div>
2014-10-29 05:33:16 -07:00
<link rel="stylesheet" href="css/vendors.min.css">
<link rel="stylesheet" href="css/copay.min.css">
2014-03-19 09:17:18 -07:00
<script src="lib/vendors.js"></script>
<script src="lib/angularjs-all.js"></script>
2014-09-26 07:09:23 -07:00
<!-- DO NOT DELETE THIS COMMET -->
<!-- PLACEHOLDER: CORDOVA SRIPT -->
2014-09-29 09:09:10 -07:00
<script src="init.js"></script>
<script src="config.js"></script>
<script src="js/copayBundle.js"></script>
<script src="js/copayMain.js"></script>
</body>
2014-03-14 13:38:27 -07:00
</html>