paperless-ngx/src-ui/src/app/components/not-found/not-found.component.html
2023-08-09 00:30:20 -07:00

18 lines
692 B
HTML

<div class="d-sm-flex flex-wrap p-2 align-items-center justify-content-center" style="height: 75vh;">
<div class="p-4 pt-0">
<h1 style="font-size: 10rem;" class="fw-bold">404</h1>
</div>
<div class="p-4 pt-0">
<h1 class="display-6" i18n>Not Found</h1>
<p>
<a class="btn btn-primary" routerLink="/dashboard">
<svg class="buttonicon me-1" fill="currentColor">
<use xlink:href="assets/bootstrap-icons.svg#house" />
</svg>
<ng-container i18n>Go to Dashboard</ng-container>
</a>
</p>
</div>
<app-logo extra_classes="p-3 position-absolute bottom-0 start-50 translate-middle"></app-logo>
</div>