diff --git a/software/src/components/basics/cardView.vue b/software/src/components/basics/cardView.vue index 2fc5899..7b2abb3 100644 --- a/software/src/components/basics/cardView.vue +++ b/software/src/components/basics/cardView.vue @@ -1,5 +1,4 @@ + + \ No newline at end of file diff --git a/software/src/layouts/accountSubPageLayout.vue b/software/src/layouts/accountSubPageLayout.vue new file mode 100644 index 0000000..a75141f --- /dev/null +++ b/software/src/layouts/accountSubPageLayout.vue @@ -0,0 +1,21 @@ + + + \ No newline at end of file diff --git a/software/src/locales/de.json b/software/src/locales/de.json index 55ca551..44b1249 100644 --- a/software/src/locales/de.json +++ b/software/src/locales/de.json @@ -106,7 +106,8 @@ } }, "addNewAccount": "Neuen Account hinzufügen", - "accountRole": "Account Rolle" + "accountRole": "Account Rolle", + "noRealPaymentsNeeded": "Keine echten Kontodaten nötig!" }, "order": { "orders": "Bestellung | Bestellungen", diff --git a/software/src/locales/en.json b/software/src/locales/en.json index 3e8ca12..23c92f7 100644 --- a/software/src/locales/en.json +++ b/software/src/locales/en.json @@ -106,7 +106,8 @@ } }, "addNewAccount": "Add new account", - "accountRole": "Account Role" + "accountRole": "Account Role", + "noRealPaymentsNeeded": "No real payment data required!" }, "order": { "orders": "Order | Orders", diff --git a/software/src/pages/account/accountDataPage/index.vue b/software/src/pages/account/accountDataPage/index.vue index 4810733..2155b2a 100644 --- a/software/src/pages/account/accountDataPage/index.vue +++ b/software/src/pages/account/accountDataPage/index.vue @@ -3,22 +3,14 @@ import accountDataCard from './accountDataCard.vue'; import accountManagingCard from './accountManagingCard.vue'; import addressesCard from './addressesCard.vue'; import paymentsCard from './paymentsCard.vue'; -import OutlinedButton from '@/components/basics/outlinedButton.vue'; import { useRouter } from 'vue-router'; +import accountSubPageLayout from '@/layouts/accountSubPageLayout.vue'; const router = useRouter() \ No newline at end of file diff --git a/software/src/pages/account/accountDataPage/paymentsCard.vue b/software/src/pages/account/accountDataPage/paymentsCard.vue index 6ce3f22..6a13c35 100644 --- a/software/src/pages/account/accountDataPage/paymentsCard.vue +++ b/software/src/pages/account/accountDataPage/paymentsCard.vue @@ -4,9 +4,9 @@ import { useAccountStore } from '@/stores/account.store'; import outlinedButton from '@/components/basics/outlinedButton.vue'; import { PaymentModel } from '@/data/models/user/paymentModel'; import { getIbanRules, getStringRules } from '@/scripts/validationRules'; +import cardViewOneLine from '@/components/basics/cardViewOneLine.vue'; const accountStore = useAccountStore() -