aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/not-found/not-found.component.html
diff options
context:
space:
mode:
authorKamen Mladenov <kamen.d.mladenov@protonmail.com>2021-03-22 20:52:19 +0200
committerGitHub <noreply@github.com>2021-03-22 20:52:19 +0200
commit0cbe73007b9112bf7aa76e2584cb1fafc272dd5b (patch)
tree69b9916c17b6675a1e33b1a180d5eb0615e4fb87 /src/app/components/not-found/not-found.component.html
parent084238dfa39f31b3661362cbe8cdea44e8f05992 (diff)
parentcad20fc8c7d58860d7bf9c803da3a8fcea43396a (diff)
downloadDevHive-Angular-0cbe73007b9112bf7aa76e2584cb1fafc272dd5b.tar
DevHive-Angular-0cbe73007b9112bf7aa76e2584cb1fafc272dd5b.tar.gz
DevHive-Angular-0cbe73007b9112bf7aa76e2584cb1fafc272dd5b.zip
Merge pull request #3 from Team-Kaleidoscope/major-redesign
Major redesign
Diffstat (limited to 'src/app/components/not-found/not-found.component.html')
-rw-r--r--src/app/components/not-found/not-found.component.html26
1 files changed, 17 insertions, 9 deletions
diff --git a/src/app/components/not-found/not-found.component.html b/src/app/components/not-found/not-found.component.html
index 83d73ce..4d1165d 100644
--- a/src/app/components/not-found/not-found.component.html
+++ b/src/app/components/not-found/not-found.component.html
@@ -1,10 +1,18 @@
-<main id="content">
- <summary class="title">
- Page not found!
- </summary>
- <hr>
- <nav id="back-btns">
- <button class="submit-btn" type="submit" (click)="backToFeed()">Back to feed</button>
- <button class="submit-btn" type="submit" (click)="backToLogin()">Back to login</button>
- </nav>
+<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-dot2" (click)="backToFeed()">
+ <img src="/assets/icons/tabler-icon-home.svg">
+ &nbsp;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">
+ &nbsp;Back to login
+ </button>
+ </nav>
+ </div>
</main>