elk/pages/login/index.vue

32 lines
725 B
Vue
Raw Normal View History

2022-11-15 15:48:23 +00:00
<script setup lang="ts">
2022-11-21 10:27:28 +00:00
definePageMeta({
layout: 'none',
})
const server = ref(useAppCookies().server.value)
2022-11-15 15:48:23 +00:00
async function oauth() {
const a = document.createElement('a')
a.href = `/api/${server.value}/login`
a.target = '_blank'
a.click()
}
</script>
<template>
2022-11-21 10:27:28 +00:00
<div h-full text-center justify-center flex="~ col items-center gap2">
<div text-4xl mb-10>
Nuxtodon
</div>
<div>Mastodon Server</div>
<div bg-gray:10 px2 py1 rounded border="~ border" w-50 mxa flex>
<span op25 mr1>https://</span>
<input v-model="server" outline-none bg-transparent>
</div>
<button bg-teal6 px2 py1 rounded w-20 mxa mt-5 @click="oauth()">
Login
2022-11-15 15:48:23 +00:00
</button>
</div>
</template>