mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
24 lines
395 B
Vue
24 lines
395 B
Vue
<template>
|
|
<ds-section>
|
|
<ds-space>
|
|
<ds-heading size="h3">
|
|
{{ $t('admin.invites.title') }}
|
|
</ds-heading>
|
|
<ds-text>
|
|
{{ $t('admin.invites.description') }}
|
|
</ds-text>
|
|
</ds-space>
|
|
<signup />
|
|
</ds-section>
|
|
</template>
|
|
|
|
<script>
|
|
import Signup from '~/components/Registration/Signup'
|
|
|
|
export default {
|
|
components: {
|
|
Signup,
|
|
},
|
|
}
|
|
</script>
|