diff --git a/src/Squidex/Areas/IdentityServer/Views/Account/AccessDenied.cshtml b/src/Squidex/Areas/IdentityServer/Views/Account/AccessDenied.cshtml index c83ce4065..3a2a5c0dc 100644 --- a/src/Squidex/Areas/IdentityServer/Views/Account/AccessDenied.cshtml +++ b/src/Squidex/Areas/IdentityServer/Views/Account/AccessDenied.cshtml @@ -3,6 +3,8 @@ ViewBag.Title = "Account locked"; } + +

Access denied

diff --git a/src/Squidex/Areas/IdentityServer/Views/Account/LockedOut.cshtml b/src/Squidex/Areas/IdentityServer/Views/Account/LockedOut.cshtml index ee3db3c4c..1d0b7d236 100644 --- a/src/Squidex/Areas/IdentityServer/Views/Account/LockedOut.cshtml +++ b/src/Squidex/Areas/IdentityServer/Views/Account/LockedOut.cshtml @@ -2,12 +2,14 @@ ViewBag.Title = "Account locked"; } + +

Account locked

Your account is locked, please contact the administrator.

- +

Logout

\ No newline at end of file diff --git a/src/Squidex/Areas/IdentityServer/Views/Account/LogoutCompleted.cshtml b/src/Squidex/Areas/IdentityServer/Views/Account/LogoutCompleted.cshtml index 0b5a323e8..9af4e0a30 100644 --- a/src/Squidex/Areas/IdentityServer/Views/Account/LogoutCompleted.cshtml +++ b/src/Squidex/Areas/IdentityServer/Views/Account/LogoutCompleted.cshtml @@ -3,6 +3,8 @@ ViewBag.Title = "Logout"; } + +

Logged out!

diff --git a/src/Squidex/Areas/IdentityServer/Views/Error/Error.cshtml b/src/Squidex/Areas/IdentityServer/Views/Error/Error.cshtml index 2844660bf..963b02adc 100644 --- a/src/Squidex/Areas/IdentityServer/Views/Error/Error.cshtml +++ b/src/Squidex/Areas/IdentityServer/Views/Error/Error.cshtml @@ -5,6 +5,8 @@ ViewBag.Title = "Operation failed"; } + +

Operation failed

diff --git a/src/Squidex/app/features/schemas/pages/schemas/schema-form.component.html b/src/Squidex/app/features/schemas/pages/schemas/schema-form.component.html index 74ab8b8ec..ac0fd5016 100644 --- a/src/Squidex/app/features/schemas/pages/schemas/schema-form.component.html +++ b/src/Squidex/app/features/schemas/pages/schemas/schema-form.component.html @@ -18,16 +18,16 @@ + + + You can only use letters, numbers and dashes and not more than 40 characters. The name cannot be changed later. + The schema name becomes part of the api url: {{apiUrl.buildUrl("api/content/")}}{{appsState.appName}}/{{createForm.schemaName | async}} - - - It must contain lower case letters (a-z), numbers and dashes only, and cannot be longer than 40 characters. The name cannot be changed later. -

diff --git a/src/Squidex/app/shared/components/app-form.component.html b/src/Squidex/app/shared/components/app-form.component.html index dd0518cb7..f8086c1c1 100644 --- a/src/Squidex/app/shared/components/app-form.component.html +++ b/src/Squidex/app/shared/components/app-form.component.html @@ -19,16 +19,16 @@ + + + You can only use letters, numbers and dashes and not more than 40 characters. The name cannot be changed later. + The app name becomes part of the api url: {{apiUrl.buildUrl("api/content/")}}{{createForm.appName | async}} - - - It must contain lower case letters (a-z), numbers and dashes only, and cannot be longer than 40 characters. The name cannot be changed later. -
diff --git a/src/Squidex/app/shell/pages/not-found/not-found-page.component.html b/src/Squidex/app/shell/pages/not-found/not-found-page.component.html index 5a067e4d4..31f9475fb 100644 --- a/src/Squidex/app/shell/pages/not-found/not-found-page.component.html +++ b/src/Squidex/app/shell/pages/not-found/not-found-page.component.html @@ -7,7 +7,6 @@

Sorry, the page or resource you are looking for does not exist. - When you create a new resource, for example an App or Schema it might take some seconds until it is available.

Back to previous page. diff --git a/src/Squidex/app/theme/_static.scss b/src/Squidex/app/theme/_static.scss index d9ce7c445..49d30864c 100644 --- a/src/Squidex/app/theme/_static.scss +++ b/src/Squidex/app/theme/_static.scss @@ -137,9 +137,15 @@ noscript { // .splash { &-h1, - &-text { + &-text, + &-image { text-align: center; } + + &-image { + max-width: 100%; + margin-bottom: 2rem; + } } // diff --git a/src/Squidex/wwwroot/images/error-access.png b/src/Squidex/wwwroot/images/error-access.png new file mode 100644 index 000000000..29f503c86 Binary files /dev/null and b/src/Squidex/wwwroot/images/error-access.png differ diff --git a/src/Squidex/wwwroot/images/error-bug.png b/src/Squidex/wwwroot/images/error-bug.png new file mode 100644 index 000000000..6a427a257 Binary files /dev/null and b/src/Squidex/wwwroot/images/error-bug.png differ