elk/components/user/UserSignIn.vue

26 wiersze
704 B
Vue
Czysty Zwykły widok Historia

2022-11-23 03:06:56 +00:00
<script setup lang="ts">
import { DEFAULT_SERVER } from '~/constants'
const server = ref<string>()
async function oauth() {
2022-11-23 03:48:01 +00:00
location.href = `/api/${server.value || DEFAULT_SERVER}/login`
2022-11-23 03:06:56 +00:00
}
</script>
2022-11-23 02:53:22 +00:00
<template>
2022-11-23 03:06:56 +00:00
<div h-full text-center justify-center flex="~ col items-center gap2">
2022-11-23 03:48:01 +00:00
<div text-3xl mb2>
Sign in
2022-11-23 02:53:22 +00:00
</div>
2022-11-23 03:48:01 +00:00
<div>Mastodon Server Name</div>
2022-11-23 03:06:56 +00:00
<div flex bg-gray:10 px2 py1 mxa rounded border="~ border" w-80 text-xl items-center>
<span op35 mr1 text-sm>https://</span>
<input v-model="server" :placeholder="DEFAULT_SERVER" outline-none bg-transparent>
</div>
2022-11-23 03:48:01 +00:00
<button btn-solid mxa mt2 @click="oauth()">
2022-11-23 02:53:22 +00:00
Sign in
2022-11-23 03:06:56 +00:00
</button>
2022-11-23 02:53:22 +00:00
</div>
</template>