mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-03-01 12:44:37 +00:00
24 lines
502 B
Vue
24 lines
502 B
Vue
<template>
|
|
<section class="ds-section">
|
|
<div class="ds-mb-large">
|
|
<h1 class="ds-heading ds-heading-h3">{{ $t('admin.invites.title') }}</h1>
|
|
<p class="ds-text">{{ $t('admin.invites.description') }}</p>
|
|
</div>
|
|
<os-card>
|
|
<signup :invitation="true" />
|
|
</os-card>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import { OsCard } from '@ocelot-social/ui'
|
|
import Signup from '~/components/Registration/Signup'
|
|
|
|
export default {
|
|
components: {
|
|
OsCard,
|
|
Signup,
|
|
},
|
|
}
|
|
</script>
|