open-webui/src/routes/error/+page.svelte

46 lines
1.2 KiB
Svelte
Raw Normal View History

2023-12-26 07:14:06 +01:00
<script>
import { goto } from '$app/navigation';
import { config } from '$lib/stores';
import { onMount } from 'svelte';
let loaded = false;
onMount(async () => {
if ($config) {
await goto('/');
}
loaded = true;
});
</script>
{#if loaded}
<div class="absolute w-full h-full flex z-50">
2023-12-26 12:28:30 +01:00
<div class="absolute rounded-xl w-full h-full backdrop-blur flex justify-center">
2023-12-26 07:14:06 +01:00
<div class="m-auto pb-44 flex flex-col justify-center">
<div class="max-w-md">
<div class="text-center text-2xl font-medium z-50">Ollama WebUI Backend Required</div>
<div class=" mt-4 text-center text-sm w-full">
2023-12-26 12:28:30 +01:00
Oops! You're using an unsupported method (frontend only).<br class=" hidden sm:flex" />
Please access the WebUI from the backend. See readme.md for instructions or join our Discord
for help.
<!-- TODO: update links -->
2023-12-26 07:14:06 +01:00
</div>
<div class=" mt-6 mx-auto relative group w-fit">
<button
class="relative z-20 flex px-5 py-2 rounded-full bg-gray-100 hover:bg-gray-200 transition font-medium text-sm"
2023-12-26 12:28:30 +01:00
on:click={() => {
location.href = '/';
}}
2023-12-26 07:14:06 +01:00
>
Check Again
</button>
</div>
</div>
</div>
</div>
</div>
{/if}