fix: 🐛 Fix impossible login
Some checks failed
CodeQL / Analyze (javascript) (push) Failing after 5s
Deploy to GitHub Pages / build (push) Failing after 5s
Deploy to GitHub Pages / deploy (push) Has been skipped
Docker / build (push) Failing after 5s
Mirror to Codeberg / Mirror (push) Failing after 0s

This commit is contained in:
Jesse Wierzbinski 2025-04-10 13:16:09 +02:00
parent 738d8840ed
commit 14d283c7a8
No known key found for this signature in database

View file

@ -1,85 +1,58 @@
<template> <template>
<div <div class="flex h-svh items-center justify-center px-6 py-12 lg:px-8 bg-center bg-no-repeat bg-cover" :style="{
class="flex h-svh items-center justify-center px-6 py-12 lg:px-8 bg-center bg-no-repeat bg-cover" backgroundImage: 'url(/images/banner.webp)',
:style="{ }">
backgroundImage: 'url(/images/banner.webp)', <form method="POST" :action="url.pathname.replace('/oauth/consent', '/oauth/authorize')">
}" <Card class="w-full max-w-md *:w-full p-6">
> <input type="hidden" v-for="[key, value] in url.searchParams" :key="key" :name="key" :value="value" />
<Card <CardHeader>
class="w-full max-w-md *:w-full p-6" <CardTitle as="h1" class="text-2xl break-words">{{
as="form" m.fresh_broad_cockroach_radiate({
method="POST" application: application ?? "",
:action="url.pathname.replace('/oauth/consent', '/oauth/authorize')" })
>
<input
type="hidden"
v-for="[key, value] in url.searchParams"
:key="key"
:name="key"
:value="value"
/>
<CardHeader>
<CardTitle as="h1" class="text-2xl break-words">{{
m.fresh_broad_cockroach_radiate({
application: application ?? "",
})
}}</CardTitle>
</CardHeader>
<CardContent>
<Card class="p-2 gap-1">
<CardContent class="flex flex-col px-4 py-2 w-full">
<CardTitle as="h2" class="text-lg">{{
application
}}</CardTitle> }}</CardTitle>
<a </CardHeader>
v-if="website" <CardContent>
:href="website" <Card class="p-2 gap-1">
target="_blank" <CardContent class="flex flex-col px-4 py-2 w-full">
rel="noopener noreferrer" <CardTitle as="h2" class="text-lg">{{
class="underline" application
>{{ website }}</a }}</CardTitle>
> <a v-if="website" :href="website" target="_blank" rel="noopener noreferrer"
</CardContent> class="underline">{{ website }}</a>
</Card> </CardContent>
<ul class="list-none my-6 [&>li]:mt-2"> </Card>
<li <ul class="list-none my-6 [&>li]:mt-2">
v-for="text in getScopeText(scopes)" <li v-for="text in getScopeText(scopes)" :key="text[1]"
:key="text[1]" class="flex flex-row gap-1 items-center">
class="flex flex-row gap-1 items-center" <Check class="size-4" />
> <h2 class="text-sm">
<Check class="size-4" /> <strong class="font-bold">{{ text[0] }}</strong>
<h2 class="text-sm"> {{ text[1] }}
<strong class="font-bold">{{ text[0] }}</strong> </h2>
{{ text[1] }} </li>
</h2> </ul>
</li> <div class="flex-col flex gap-y-1 text-sm">
</ul> <p v-html="m.gross_antsy_kangaroo_succeed({
<div class="flex-col flex gap-y-1 text-sm"> application: application ?? '',
<p })
v-html=" "></p>
m.gross_antsy_kangaroo_succeed({ <p v-html="m.hour_close_giraffe_mop({
application: application ?? '', application: application ?? '',
}) })
" "></p>
></p> </div>
<p </CardContent>
v-html=" <CardFooter class="grid gap-2">
m.hour_close_giraffe_mop({ <Button variant="default" type="submit">{{
application: application ?? '', m.last_spare_polecat_reside()
}) }}</Button>
" <Button :as="NuxtLink" href="/" variant="secondary">{{
></p> m.soft_bold_ant_attend()
</div> }}</Button>
</CardContent> </CardFooter>
<CardFooter class="grid gap-2"> </Card>
<Button variant="default" type="submit">{{ </form>
m.last_spare_polecat_reside()
}}</Button>
<Button :as="NuxtLink" href="/" variant="secondary">{{
m.soft_bold_ant_attend()
}}</Button>
</CardFooter>
</Card>
</div> </div>
</template> </template>