mirror of https://github.com/elk-zone/elk.git
32 lines
867 B
Vue
32 lines
867 B
Vue
<script setup lang="ts">
|
|
import { DEFAULT_SERVER } from '~/constants'
|
|
|
|
let server = $ref<string>('')
|
|
|
|
async function oauth() {
|
|
server = server.split('/')[0]
|
|
location.href = `/api/${server || DEFAULT_SERVER}/login`
|
|
}
|
|
|
|
async function handleInput() {
|
|
if (server.startsWith('https://'))
|
|
server = server.replace('https://', '')
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div h-full text-center justify-center flex="~ col items-center gap2">
|
|
<div text-3xl mb2>
|
|
Sign in
|
|
</div>
|
|
<div>Mastodon Server Name</div>
|
|
<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 @input="handleInput">
|
|
</div>
|
|
<button btn-solid mxa mt2 @click="oauth()">
|
|
Sign in
|
|
</button>
|
|
</div>
|
|
</template>
|