mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
* Added links to contact form * Fixed encoding link. Added link to tavern. Updated copy * Converted link to cookie link * Updated domain format * Updated links * Added apikey to cookie
57 lines
1.7 KiB
Vue
57 lines
1.7 KiB
Vue
<template lang="pug">
|
|
.container-fluid
|
|
.row
|
|
.col-md-6.offset-3
|
|
h1 {{ $t('contactUs') }}
|
|
|
|
p
|
|
| {{ $t('reportAccountProblems') }}
|
|
| :
|
|
a(href='mailto:admin@habitica.com') admin@habitica.com
|
|
br
|
|
| {{ $t('reportBug') }}
|
|
| :
|
|
a(target='_blank', href='/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac') Report a Bug guild
|
|
| or
|
|
a(target='_blank', href='https://github.com/HabitRPG/habitica/issues?q=is%3Aopen') GitHub
|
|
span(v-if='this.user')
|
|
br
|
|
| {{ $t('reportCommunityIssues') }}
|
|
| :
|
|
a(@click.prevent='modForm()', href='') {{ $t('contactForm') }}
|
|
br
|
|
| {{ $t('subscriptionPaymentIssues') }}
|
|
| :
|
|
a(href='mailto:admin@habitica.com') admin@habitica.com
|
|
br
|
|
| {{ $t('generalQuestionsSite') }}
|
|
| :
|
|
a(target='_blank', href='/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a') Habitica Help guild
|
|
br
|
|
| {{ $t('businessInquiries') }}
|
|
| :
|
|
a(href='mailto:admin@habitica.com') admin@habitica.com
|
|
br
|
|
| {{ $t('merchandiseInquiries') }}
|
|
| :
|
|
a(href='mailto:admin@habitica.com') admin@habitica.com
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from 'client/libs/store';
|
|
import { goToModForm } from 'client/libs/modform';
|
|
|
|
export default {
|
|
computed: {
|
|
...mapState({
|
|
user: 'user.data',
|
|
}),
|
|
},
|
|
methods: {
|
|
modForm () {
|
|
goToModForm(this.user);
|
|
},
|
|
},
|
|
};
|
|
</script>
|