1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-19 10:29:59 +01:00
elk/components/user/UserSignInEntry.vue

11 lines
263 B
Vue
Raw Normal View History

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