]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/error/error.component.html
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / error / error.component.html
CommitLineData
f67539c2
TL
1<head>
2 <title>Error Page</title>
3 <base target="_blank">
4</head>
5<div class="dashboard row">
6 <div class="text-center content">
7 <br>
8 <div *ngIf="header && message; else elseBlock">
9 <i class="{{ icon }}"
10 aria-hidden="true"></i>
11 <br><br><br>
12 <h3><b>{{ header }}</b></h3>
13 <br>
14 <h4>{{ message }}</h4>
15 </div>
16 <ng-template #elseBlock>
17 <i class="fa fa-exclamation-triangle"
18 aria-hidden="true"></i>
19 <br><br><br>
20 <h3 i18n><b>Page not Found</b></h3>
21 <br>
22 <h4 i18n>Sorry, we couldn’t find what you were looking for.
23 The page you requested may have been changed or moved.</h4>
24 </ng-template>
25 <div *ngIf="section">
26 <h4 i18n>Please consult the <a href="{{ docUrl }}">documentation</a> on how to configure and enable
27 the {{ section_info }} management functionality.</h4>
28 </div>
29 <br><br>
30 <div>
31 <button class="btn btn-primary"
32 [routerLink]="'/dashboard'"
33 i18n>Go To Dashboard</button>
34 </div>
35 </div>
36</div>