blob: 7b776bdd9e45ba8686e01412813fb117bea096c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<main class="centered-content flex-col flex-center-align-items flex-justify-center height-full">
<div class="card width-full padding-dot6">
<summary class="title">
Page not found!
</summary>
<hr class="card-hr">
<nav class="flex-row flexible-children padding-dot2">
<button class="flex-row flex-justify-center flex-center-align-items border-faded-slim padding-dot3 lighter-hover click-effect border-radius-dot3 margin-right-small" (click)="backToFeed()">
<img src="/assets/icons/tabler-icon-home.svg">
Back to feed
</button>
<button class="flex-row flex-justify-center flex-center-align-items border-faded-slim padding-dot3 lighter-hover click-effect border-radius-dot3" (click)="backToLogin()">
<img src="/assets/icons/tabler-icon-login.svg">
Back to login
</button>
</nav>
</div>
</main>
|