mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-05-06 10:49:27 +00:00
feat: login redirect route for AL [just in case]
Some checks failed
Check / check (push) Has been cancelled
Some checks failed
Check / check (push) Has been cancelled
This commit is contained in:
parent
56a1cfbc98
commit
0a2fbfec45
2 changed files with 19 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "ui",
|
||||
"version": "6.3.67",
|
||||
"version": "6.3.68",
|
||||
"license": "BUSL-1.1",
|
||||
"private": true,
|
||||
"packageManager": "pnpm@9.14.4",
|
||||
|
|
|
|||
18
src/routes/authorize/+page.svelte
Normal file
18
src/routes/authorize/+page.svelte
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<script lang='ts'>
|
||||
import { Separator } from '$lib/components/ui/separator'
|
||||
</script>
|
||||
|
||||
<div class='w-full h-full flex flex-col grow items-center justify-center gap-9'>
|
||||
<div class='overflow-x-hidden overflow-y-scroll relative flex justify-center items-center text-white px-15 w-full font-light'>
|
||||
<div class='w-96 sm:!hidden justify-center items-center flex-col flex'>
|
||||
<div class='text-6xl'>Redirecting...</div>
|
||||
<Separator class='my-6 w-40' />
|
||||
<div class='text-xl text-wrap max-w-full'>This should take no more than a second.</div>
|
||||
</div>
|
||||
<div class='max-w-4xl w-full hidden justify-center items-center sm:!flex'>
|
||||
<div class='text-6xl'>Redirecting...</div>
|
||||
<Separator class='mx-6 h-20' orientation='vertical' />
|
||||
<div class='text-xl text-wrap max-w-full'>This should take no more than a second.</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Loading…
Reference in a new issue