elk/components/user/UserSignInEntry.vue

16 lines
425 B
Vue
Raw Normal View History

2022-11-23 03:06:56 +00:00
<template>
2022-12-27 17:49:15 +00:00
<div p8 lg:flex="~ col gap2" hidden>
<p v-if="isMastoInitialised" 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>
2022-12-27 17:49:15 +00:00
<button btn-solid text-center mt-2 @click="openSigninDialog()">
{{ $t('action.sign_in') }}
2022-11-23 08:58:07 +00:00
</button>
2022-11-23 03:06:56 +00:00
</div>
</template>