copay/index.html

65 lines
2.1 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>
<link rel="stylesheet" href="css/vendors.min.css">
<link rel="stylesheet" href="css/copay.min.css">
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body ng-cloak class="ng-cloak">
<div class="page">
2014-07-23 15:49:06 -07:00
<div class="off-canvas-wrap">
<div class="inner-wrap">
<span class="status" ng-if="$root.reconnecting">Attempting to reconnect...</span>
<nav class="tab-bar" ng-class="{'hide-tab-bar' : !$root.wallet ||
!$root.wallet.isReady() || $root.wallet.isLocked}">
<section class="left-small">
<a class="left-off-canvas-toggle menu-icon" ><span></span></a>
</section>
2014-04-09 07:05:25 -07:00
<section class="middle tab-bar-section">
<h1 class="right">
{{totalBalance || 0 |noFractionNumber}} {{$root.unitName}}
</h1>
<h1 class="title ellipsis">
{{$root.wallet.getName()}}
</h1>
</section>
2014-07-23 15:49:06 -07:00
</nav>
<aside class="left-off-canvas-menu">
<div ng-include="'views/includes/sidebar-mobile.html'"></div>
</aside>
2014-07-24 13:33:00 -07:00
<div notifications="right top"></div>
2014-07-23 15:49:06 -07:00
<div
ng-class="{'sidebar' : $root.wallet && $root.wallet.isReady() &&
!$root.wallet.isLocked}"
2014-07-23 15:49:06 -07:00
ng-include="'views/includes/sidebar.html'"
role='navigation'
ng-if="$root.wallet && $root.wallet.isReady() &&
!$root.wallet.isLocked"></div>
2014-07-23 15:49:06 -07:00
<section ng-class="{'main' : $root.wallet && $root.wallet.isReady() &&
!$root.wallet.isLocked}" ng-view></section>
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-03-19 09:17:18 -07:00
<script src="lib/vendors.js"></script>
<script src="lib/angularjs-all.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>