11 lines
527 B
HTML
11 lines
527 B
HTML
<div ng-init="$root.title = 'Page not found'"
|
|
ng-class="{'wide-page':!$root.wallet}">
|
|
<div class="text-center">
|
|
<img ng-show="$root.wallet" src="img/logo.svg" alt="Copay">
|
|
<img ng-show="!$root.wallet" src="img/logo-negative.svg" alt="Copay">
|
|
</div>
|
|
<h1 class="text-center" ng-class="{'text-white': !$root.wallet}">404</h1>
|
|
<h3 translate class="text-center" ng-class="{'text-white': !$root.wallet}">Page not found</h3>
|
|
<p class="text-center"><a href="#!/">« <span translate>Back</span></a></p>
|
|
</div>
|
|
|