mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
23 lines
498 B
Vue
23 lines
498 B
Vue
<template>
|
|
<ds-container width="small">
|
|
<ds-flex>
|
|
<ds-flex-item :width="{ base: '100%' }" centered>
|
|
<ds-space style="text-align: center;" margin-top="small" margin-bottom="xxx-small" centered>
|
|
<password-reset />
|
|
</ds-space>
|
|
</ds-flex-item>
|
|
</ds-flex>
|
|
</ds-container>
|
|
</template>
|
|
|
|
<script>
|
|
import PasswordReset from '~/components/PasswordReset/PasswordReset'
|
|
|
|
export default {
|
|
layout: 'default',
|
|
components: {
|
|
PasswordReset,
|
|
}
|
|
}
|
|
</script>
|