mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
09f80f291b
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe> Co-authored-by: 沈青川 <46062972+ShenQingchuan@users.noreply.github.com>
33 lines
930 B
Vue
33 lines
930 B
Vue
<script setup lang="ts">
|
|
import { DEFAULT_SERVER } from '~/constants'
|
|
|
|
let server = $ref<string>('')
|
|
|
|
async function oauth() {
|
|
if (server)
|
|
server = server.split('/')[0]
|
|
location.href = `/api/${server || DEFAULT_SERVER}/login`
|
|
}
|
|
|
|
async function handleInput() {
|
|
if (server.startsWith('https://'))
|
|
server = server.replace('https://', '')
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<form text-center justify-center items-center flex="~ col gap2" @submit.prevent="oauth">
|
|
<div text-3xl mb2>
|
|
{{ $t('action.sign_in') }}
|
|
</div>
|
|
<div>Mastodon Server Name</div>
|
|
<div flex bg-gray:10 px2 py1 mxa rounded border="~ border" text-xl items-center>
|
|
<span text-secondary-light mr1 text-sm>https://</span>
|
|
<input v-model="server" :placeholder="DEFAULT_SERVER" outline-none bg-transparent @input="handleInput">
|
|
</div>
|
|
<button btn-solid mt2>
|
|
{{ $t('action.sign_in') }}
|
|
</button>
|
|
</form>
|
|
</template>
|