From e019fa159bb2c535815319bdd0acd07c79158b22 Mon Sep 17 00:00:00 2001 From: chomik Date: Fri, 23 Feb 2018 01:50:17 +0100 Subject: [PATCH] error pages, login, register, forgot passsword, single page --- src/400.html | 5 +++ src/401.html | 5 +++ src/403.html | 5 +++ src/404.html | 5 +-- src/500.html | 5 +++ src/503.html | 5 +++ src/_data/menu.yml | 56 ++++++++++++++++++++++++--- src/_includes/cards/forgot.html | 13 +++---- src/_includes/cards/login.html | 27 +++++++------ src/_includes/cards/register.html | 21 +++++----- src/_includes/footer-sub.html | 18 ++++----- src/_includes/header.html | 3 +- src/_includes/page-error.html | 8 ++-- src/_layouts/error.html | 10 ++++- src/_layouts/single.html | 8 ++-- src/assets/brand/tabler.sketch | Bin 0 -> 33003 bytes src/assets/brand/tabler.svg | 20 ++++++++++ src/assets/brand/tabler@1x.png | Bin 0 -> 7697 bytes src/assets/brand/tabler@2x.png | Bin 0 -> 17408 bytes src/assets/scss/dashboard/_form.scss | 2 + src/empty.html | 1 + src/profile.html | 2 +- 22 files changed, 163 insertions(+), 56 deletions(-) create mode 100644 src/400.html create mode 100644 src/401.html create mode 100644 src/403.html create mode 100644 src/500.html create mode 100644 src/503.html create mode 100644 src/assets/brand/tabler.sketch create mode 100644 src/assets/brand/tabler.svg create mode 100644 src/assets/brand/tabler@1x.png create mode 100644 src/assets/brand/tabler@2x.png diff --git a/src/400.html b/src/400.html new file mode 100644 index 00000000..71e579ae --- /dev/null +++ b/src/400.html @@ -0,0 +1,5 @@ +--- +title: Page 400 +layout: error +error: error-400 +--- \ No newline at end of file diff --git a/src/401.html b/src/401.html new file mode 100644 index 00000000..01abbcc6 --- /dev/null +++ b/src/401.html @@ -0,0 +1,5 @@ +--- +title: Page 401 +layout: error +error: error-401 +--- \ No newline at end of file diff --git a/src/403.html b/src/403.html new file mode 100644 index 00000000..90410c48 --- /dev/null +++ b/src/403.html @@ -0,0 +1,5 @@ +--- +title: Page 403 +layout: error +error: error-403 +--- \ No newline at end of file diff --git a/src/404.html b/src/404.html index ff8efa13..dbc688b4 100644 --- a/src/404.html +++ b/src/404.html @@ -1,6 +1,5 @@ --- title: Page 404 layout: error ---- - -{% include page-error.html error="error-404" %} \ No newline at end of file +error: error-404 +--- \ No newline at end of file diff --git a/src/500.html b/src/500.html new file mode 100644 index 00000000..b7bcc7fe --- /dev/null +++ b/src/500.html @@ -0,0 +1,5 @@ +--- +title: Page 500 +layout: error +error: error-500 +--- \ No newline at end of file diff --git a/src/503.html b/src/503.html new file mode 100644 index 00000000..b209f0a1 --- /dev/null +++ b/src/503.html @@ -0,0 +1,5 @@ +--- +title: Page 503 +layout: error +error: error-503 +--- \ No newline at end of file diff --git a/src/_data/menu.yml b/src/_data/menu.yml index 6528b415..4baafaff 100644 --- a/src/_data/menu.yml +++ b/src/_data/menu.yml @@ -41,16 +41,60 @@ components: icon: fe fe-shopping-cart url: blog.html +pages: + name: Pages + icon: fe fe-file + subpages: + profile: + name: Profile + icon: fe fe-user + url: profile.html + + login: + name: Login + url: login.html + + register: + name: Register + url: register.html + + forgot-password: + name: Forgot password + url: forgot-password.html + + 400: + name: 400 error + url: 400.html + + 401: + name: 401 error + url: 104.html + + 403: + name: 403 error + url: 403.html + + 404: + name: 404 error + url: 404.html + + 500: + name: 500 error + url: 500.html + + 503: + name: 503 error + url: 503.html + + empty: + name: Empty page + url: empty.html + forms: name: Forms icon: fe fe-check-square url: form-elements.html -profile: - name: Profile - icon: fe fe-user - url: profile.html - gallery: name: Gallery icon: fe fe-image @@ -58,6 +102,6 @@ gallery: docs: - name: Docs + name: Documentation icon: fe fe-file-text url: docs/index.html \ No newline at end of file diff --git a/src/_includes/cards/forgot.html b/src/_includes/cards/forgot.html index c373580e..871e9ea2 100644 --- a/src/_includes/cards/forgot.html +++ b/src/_includes/cards/forgot.html @@ -1,7 +1,6 @@ -
+ - -
+
Forgot password

Enter your email address and your password will be reset and emailed to you.

@@ -13,7 +12,7 @@
- -
\ No newline at end of file + +
+ Forget it, send me back to the sign in screen. +
\ No newline at end of file diff --git a/src/_includes/cards/login.html b/src/_includes/cards/login.html index 0d2ff3fe..4b3b4a6a 100644 --- a/src/_includes/cards/login.html +++ b/src/_includes/cards/login.html @@ -1,27 +1,32 @@ -
+ -
-
Sign In
+
+
Login to your account
- +
-
-
- \ No newline at end of file + + +
+ Don't have account yet? Sign up +
\ No newline at end of file diff --git a/src/_includes/cards/register.html b/src/_includes/cards/register.html index a6e3cb71..86fea850 100644 --- a/src/_includes/cards/register.html +++ b/src/_includes/cards/register.html @@ -1,7 +1,5 @@ -
- - -
+ +
Create new account
@@ -16,14 +14,19 @@
-
-
- \ No newline at end of file + + +
+ Already have account? Sign in +
\ No newline at end of file diff --git a/src/_includes/footer-sub.html b/src/_includes/footer-sub.html index 462c5c24..0578d94b 100644 --- a/src/_includes/footer-sub.html +++ b/src/_includes/footer-sub.html @@ -5,32 +5,32 @@
- Lorem ipsum dolor sit amet, consectetur adipisicing elit. A consequatur corporis debitis dolore doloribus esse. + Premium and Open Source dashboard template with responsive and high quality UI. For Free!
diff --git a/src/_includes/header.html b/src/_includes/header.html index b227371e..817202b4 100644 --- a/src/_includes/header.html +++ b/src/_includes/header.html @@ -3,8 +3,7 @@