mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Change registration svg
This commit is contained in:
parent
259a58cab9
commit
d3737b2acf
@ -1,8 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<ds-container width="medium">
|
<ds-container width="small">
|
||||||
<base-card>
|
<base-card>
|
||||||
<template #imageColumn>
|
<template #imageColumn>
|
||||||
<img alt="Sign up" src="/img/custom/sign-up.svg" />
|
<a :href="links.ORGANIZATION" :title="$t('login.moreInfo', metadata)" target="_blank">
|
||||||
|
<img class="image" alt="Sign up" src="/img/custom/sign-up.svg" />
|
||||||
|
</a>
|
||||||
</template>
|
</template>
|
||||||
<nuxt-child />
|
<nuxt-child />
|
||||||
<template #topMenu>
|
<template #topMenu>
|
||||||
@ -13,6 +15,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import links from '~/constants/links.js'
|
||||||
|
import metadata from '~/constants/metadata.js'
|
||||||
import LocaleSwitch from '~/components/LocaleSwitch/LocaleSwitch'
|
import LocaleSwitch from '~/components/LocaleSwitch/LocaleSwitch'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -20,6 +24,12 @@ export default {
|
|||||||
LocaleSwitch,
|
LocaleSwitch,
|
||||||
},
|
},
|
||||||
layout: 'no-header',
|
layout: 'no-header',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
metadata,
|
||||||
|
links,
|
||||||
|
}
|
||||||
|
},
|
||||||
asyncData({ store, redirect }) {
|
asyncData({ store, redirect }) {
|
||||||
if (store.getters['auth/isLoggedIn']) {
|
if (store.getters['auth/isLoggedIn']) {
|
||||||
redirect('/')
|
redirect('/')
|
||||||
@ -27,3 +37,9 @@ export default {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.image {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 34 KiB |
Loading…
x
Reference in New Issue
Block a user