elk/components/user/UserSignInEntry.vue

16 lines
439 B
Vue
Raw Normal View History

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