mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
72 lines
1.9 KiB
Vue
72 lines
1.9 KiB
Vue
<template>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-6 offset-3">
|
|
<h1>{{ $t('contactUs') }}</h1>
|
|
<p>
|
|
{{ $t('reportAccountProblems') }}
|
|
:
|
|
<a href="mailto:admin@habitica.com">admin@habitica.com</a>
|
|
<br>
|
|
{{ $t('reportBug') }}
|
|
:
|
|
<a
|
|
target="_blank"
|
|
href="/groups/guild/a29da26b-37de-4a71-b0c6-48e72a900dac"
|
|
>Report a Bug guild</a> or
|
|
<a
|
|
target="_blank"
|
|
href="https://github.com/HabitRPG/habitica/issues?q=is%3Aopen"
|
|
>GitHub</a>
|
|
<span v-if="user">
|
|
<br>
|
|
{{ $t('reportCommunityIssues') }}
|
|
:
|
|
<a
|
|
href
|
|
@click.prevent="modForm()"
|
|
>{{ $t('contactForm') }}</a>
|
|
</span>
|
|
<br>
|
|
{{ $t('subscriptionPaymentIssues') }}
|
|
:
|
|
<a href="mailto:admin@habitica.com">admin@habitica.com</a>
|
|
<br>
|
|
{{ $t('generalQuestionsSite') }}
|
|
:
|
|
<a
|
|
target="_blank"
|
|
href="/groups/guild/5481ccf3-5d2d-48a9-a871-70a7380cee5a"
|
|
>Habitica Help guild</a>
|
|
<br>
|
|
{{ $t('businessInquiries') }}
|
|
:
|
|
<a href="mailto:admin@habitica.com">admin@habitica.com</a>
|
|
<br>
|
|
{{ $t('merchandiseInquiries') }}
|
|
:
|
|
<a href="mailto:admin@habitica.com">admin@habitica.com</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState } from '@/libs/store';
|
|
import { goToModForm } from '@/libs/modform';
|
|
|
|
export default {
|
|
computed: {
|
|
...mapState({
|
|
user: 'user.data',
|
|
}),
|
|
},
|
|
methods: {
|
|
modForm () {
|
|
goToModForm(this.user);
|
|
},
|
|
},
|
|
};
|
|
</script>
|