2022-11-23 03:06:56 +00:00
|
|
|
<template>
|
2022-12-27 17:49:15 +00:00
|
|
|
<div p8 lg:flex="~ col gap2" hidden>
|
2023-01-15 08:38:02 +00:00
|
|
|
<p v-if="isHydrated" text-sm>
|
2022-12-27 17:49:15 +00:00
|
|
|
<i18n-t keypath="user.sign_in_notice_title">
|
|
|
|
<strong>{{ currentServer }}</strong>
|
|
|
|
</i18n-t>
|
2022-11-29 20:51:52 +00:00
|
|
|
</p>
|
|
|
|
<p text-sm text-secondary>
|
2022-12-27 17:49:15 +00:00
|
|
|
{{ $t('user.sign_in_desc') }}
|
2022-11-29 20:51:52 +00:00
|
|
|
</p>
|
2023-01-15 15:42:16 +00:00
|
|
|
<button btn-solid rounded-3 text-center mt-2 select-none @click="openSigninDialog()">
|
2022-11-29 10:55:28 +00:00
|
|
|
{{ $t('action.sign_in') }}
|
2022-11-23 08:58:07 +00:00
|
|
|
</button>
|
2022-11-23 03:06:56 +00:00
|
|
|
</div>
|
|
|
|
</template>
|