1
0

feat: change wording

This commit is contained in:
kolaente
2021-11-28 16:35:59 +01:00
committed by Dominik Pschenitschni
parent aa12bffcbc
commit 1d916e7e03
4 changed files with 6 additions and 9 deletions

View File

@ -83,7 +83,7 @@
type="secondary"
tabindex="5"
>
{{ $t('user.auth.register') }}
{{ $t('user.auth.createAccount') }}
</x-button>
</div>
</div>

View File

@ -77,7 +77,7 @@
class="mr-2"
:disabled="!everythingValid"
>
{{ $t('user.auth.register') }}
{{ $t('user.auth.createAccount') }}
</x-button>
<x-button :to="{ name: 'user.login' }" type="secondary">
{{ $t('user.auth.login') }}
@ -91,7 +91,6 @@
<script setup>
import {useDebounceFn} from '@vueuse/core'
import {ref, reactive, toRaw, computed, onBeforeMount} from 'vue'
import {useI18n} from 'vue-i18n'
import router from '@/router'
import {store} from '@/store'
@ -106,8 +105,6 @@ onBeforeMount(() => {
}
})
const {t} = useI18n()
const credentials = reactive({
username: '',
email: '',