elk/components/user/UserSignInEntry.vue

14 lines
347 B
Vue
Raw Normal View History

2022-11-23 03:06:56 +00:00
<template>
<div p8 flex="~ col gap4">
2022-11-29 20:51:52 +00:00
<p text-sm>
Viewing <strong>{{ currentServer }}</strong> public data
</p>
<p text-sm text-secondary>
{{ $t('nav_user.sign_in_desc') }}
2022-11-29 20:51:52 +00:00
</p>
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>