mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
23 lines
543 B
Vue
23 lines
543 B
Vue
<template>
|
|
<!-- This registration form will be visible to the public as soon as the registration is open to the public. -->
|
|
<ds-section>
|
|
<ds-space>
|
|
<ds-heading size="h3">{{ $t('admin.invites.title') }}</ds-heading>
|
|
<ds-text>{{ $t('admin.invites.description') }}</ds-text>
|
|
</ds-space>
|
|
<ds-card class="signup">
|
|
<signup :invitation="true" />
|
|
</ds-card>
|
|
</ds-section>
|
|
</template>
|
|
|
|
<script>
|
|
import Signup from '~/components/Registration/Signup'
|
|
|
|
export default {
|
|
components: {
|
|
Signup,
|
|
},
|
|
}
|
|
</script>
|