mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
14 lines
389 B
Vue
14 lines
389 B
Vue
<template>
|
|
<div p8 flex="~ col gap4" hidden lg:block>
|
|
<p v-if="isMastoInitialised" text-sm>
|
|
Viewing <strong>{{ currentServer }}</strong> public data
|
|
</p>
|
|
<p text-sm text-secondary>
|
|
{{ $t('nav_user.sign_in_desc') }}
|
|
</p>
|
|
<button class="btn-solid text-center" @click="openSigninDialog()">
|
|
{{ $t('action.sign_in') }}
|
|
</button>
|
|
</div>
|
|
</template>
|