mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-14 08:41:15 +10:00
15 lines
416 B
Vue
15 lines
416 B
Vue
<template>
|
|
<div class="flex">
|
|
<a
|
|
:href="`/auth/oidc?redirect=${route.query.redirect ?? '/'}`"
|
|
class="transition rounded-md grow inline-flex items-center justify-center bg-white/10 px-3.5 py-2.5 text-sm font-semibold text-white shadow-xs hover:bg-white/20"
|
|
>
|
|
Sign in with external provider →
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const route = useRoute();
|
|
</script>
|