mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
60 lines
1.7 KiB
Vue
60 lines
1.7 KiB
Vue
<template>
|
|
<div id="register-community">
|
|
<!-- Header -->
|
|
<div class="p-3">
|
|
<b-container>
|
|
<div class="text-center mb-7 header">
|
|
<b-row class="justify-content-center">
|
|
<b-col xl="5" lg="6" md="8" class="px-2">
|
|
<h1>{{ $store.state.community.name }}</h1>
|
|
<p class="text-lead">
|
|
{{ $store.state.community.description }}
|
|
</p>
|
|
<p class="text-lead community-location">
|
|
{{ $store.state.community.url }}
|
|
</p>
|
|
</b-col>
|
|
</b-row>
|
|
<b-row>
|
|
<b-col class="text-center">
|
|
<router-link to="/register">
|
|
<b-button variant="outline-secondary">
|
|
{{ $t('community.continue-to-registration') }}
|
|
</b-button>
|
|
</router-link>
|
|
</b-col>
|
|
</b-row>
|
|
|
|
<hr />
|
|
<b-row>
|
|
<b-col class="text-center">
|
|
<router-link to="/select-community">
|
|
<b-button variant="outline-secondary">
|
|
{{ $t('community.choose-another-community') }}
|
|
</b-button>
|
|
</router-link>
|
|
</b-col>
|
|
</b-row>
|
|
<hr />
|
|
<b-row>
|
|
<b-col class="text-center">
|
|
<router-link to="/login">
|
|
<b-button variant="outline-secondary">{{ $t('back') }}</b-button>
|
|
</router-link>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
</b-container>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { getCommunityInfoMixin } from '@/mixins/getCommunityInfo'
|
|
|
|
export default {
|
|
name: 'RegisterCommunity',
|
|
mixins: [getCommunityInfoMixin],
|
|
}
|
|
</script>
|
|
<style></style>
|