mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
42 lines
1.2 KiB
Vue
42 lines
1.2 KiB
Vue
<template>
|
|
<div class="redeem-logged-out">
|
|
<redeem-information v-bind="linkData" :isContributionLink="isContributionLink" />
|
|
|
|
<b-jumbotron>
|
|
<div class="mb-6">
|
|
<h2>{{ $t('gdd_per_link.redeem') }}</h2>
|
|
</div>
|
|
|
|
<b-row>
|
|
<b-col col sm="12" md="6">
|
|
<p>{{ $t('gdd_per_link.no-account') }}</p>
|
|
<b-button variant="primary" :to="register">
|
|
{{ $t('gdd_per_link.to-register') }}
|
|
</b-button>
|
|
<p class="mt-3">{{ $t('gdd_per_link.isFree') }}</p>
|
|
</b-col>
|
|
<b-col sm="12" md="6" class="mt-xs-6 mt-sm-6 mt-md-0">
|
|
<p>{{ $t('gdd_per_link.has-account') }}</p>
|
|
<b-button variant="info" :to="login">{{ $t('gdd_per_link.to-login') }}</b-button>
|
|
</b-col>
|
|
</b-row>
|
|
</b-jumbotron>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import RedeemInformation from '@/components/LinkInformations/RedeemInformation.vue'
|
|
import { authLinks } from '@/mixins/authLinks'
|
|
|
|
export default {
|
|
name: 'RedeemLoggedOut',
|
|
mixins: [authLinks],
|
|
components: {
|
|
RedeemInformation,
|
|
},
|
|
props: {
|
|
linkData: { type: Object, required: true },
|
|
isContributionLink: { type: Boolean, default: false },
|
|
},
|
|
}
|
|
</script>
|