elk/components/user/UserSignInEntry.vue

11 lines
263 B
Vue
Raw Normal View History

2022-11-23 04:06:56 +01:00
<template>
<div p8 flex="~ col gap4">
<div text-sm text-secondary>
{{ $t('nav_user.sign_in_desc') }}
2022-11-23 04:06:56 +01:00
</div>
2022-11-23 14:15:33 +01:00
<button class="btn-solid text-center" @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>