mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
- added locale switch back on login - added locale switch to password reset - increased width of login and password reset - added logo to password reset - co-authored-by: mattwr18 <mattwr18@gmail.com> - co-authored-by: mikeaono <aonomike@gmail.com>
24 lines
499 B
Vue
24 lines
499 B
Vue
<template>
|
|
<ds-container width="medium">
|
|
<ds-flex>
|
|
<ds-flex-item :width="{ base: '100%' }" centered>
|
|
<ds-space style="text-align: center;" margin-top="small" margin-bottom="xxx-small" centered>
|
|
<nuxt-child />
|
|
</ds-space>
|
|
</ds-flex-item>
|
|
</ds-flex>
|
|
</ds-container>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
layout: 'no-header',
|
|
asyncData({ store, redirect }) {
|
|
if (store.getters['auth/isLoggedIn']) {
|
|
redirect('/')
|
|
}
|
|
},
|
|
}
|
|
</script>
|