elk/components/user/UserSignInEntry.vue

16 lines
435 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>
<p v-if="isMastoInitialised" 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>
2023-01-05 15:03:45 +01:00
<button btn-solid rounded-3 text-center mt-2 @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>