diff --git a/src/lib/components/AlphaNotice.svelte b/src/lib/components/AlphaNotice.svelte new file mode 100644 index 0000000..45efed4 --- /dev/null +++ b/src/lib/components/AlphaNotice.svelte @@ -0,0 +1,32 @@ +
+ Note that this Dashboard is in an alpha state. This means that there are bugs and missing features. + Please report any bugs or issues to the + GitHub repository. +
+This is a Dashboard app for my Ecosystem's services. - The list and roadmap of supported services can be viewed in the + The list and roadmap of supported services can be viewed in the README.md page of the github repository. Thus, the Dashboard is opensource in the same repository.
diff --git a/src/routes/login/+page.svelte b/src/routes/login/+page.svelte index 76deba9..e009e35 100644 --- a/src/routes/login/+page.svelte +++ b/src/routes/login/+page.svelte @@ -3,6 +3,7 @@ import { onMount } from 'svelte'; import { setSessionKey, redirectToHome, ACCOUNTS_WORKER_URL } from '$lib/session.js'; import { page } from '$app/state'; + import AlphaNotice from '$lib/components/AlphaNotice.svelte'; let email = ''; let password = ''; let errorMessage = ''; @@ -43,6 +44,8 @@{errorMessage}
{/if} diff --git a/src/routes/signup/+page.svelte b/src/routes/signup/+page.svelte index cc133e0..3919e8b 100644 --- a/src/routes/signup/+page.svelte +++ b/src/routes/signup/+page.svelte @@ -2,6 +2,7 @@ import { navigate } from 'svelte-routing'; import { setSessionKey, ACCOUNTS_WORKER_URL } from '$lib/session.js'; import { page } from '$app/state'; + import AlphaNotice from '$lib/components/AlphaNotice.svelte'; let username = ''; let firstname = ''; let lastname = ''; @@ -41,6 +42,8 @@{errorMessage}
{/if} @@ -141,7 +144,7 @@ } button:hover { - background-color: #0056b3; + background-color: var(--color-theme-2); } p {