mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
Change registration svg
This commit is contained in:
parent
259a58cab9
commit
d3737b2acf
@ -1,8 +1,10 @@
|
||||
<template>
|
||||
<ds-container width="medium">
|
||||
<ds-container width="small">
|
||||
<base-card>
|
||||
<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>
|
||||
<nuxt-child />
|
||||
<template #topMenu>
|
||||
@ -13,6 +15,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import links from '~/constants/links.js'
|
||||
import metadata from '~/constants/metadata.js'
|
||||
import LocaleSwitch from '~/components/LocaleSwitch/LocaleSwitch'
|
||||
|
||||
export default {
|
||||
@ -20,6 +24,12 @@ export default {
|
||||
LocaleSwitch,
|
||||
},
|
||||
layout: 'no-header',
|
||||
data() {
|
||||
return {
|
||||
metadata,
|
||||
links,
|
||||
}
|
||||
},
|
||||
asyncData({ store, redirect }) {
|
||||
if (store.getters['auth/isLoggedIn']) {
|
||||
redirect('/')
|
||||
@ -27,3 +37,9 @@ export default {
|
||||
},
|
||||
}
|
||||
</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