diff --git a/client/src/components/onboarding/PaymentMethod.vue b/client/src/components/onboarding/PaymentMethod.vue
new file mode 100644
index 00000000..1b3bf824
--- /dev/null
+++ b/client/src/components/onboarding/PaymentMethod.vue
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t("shop.paymentCembraByjunoMessage") }}
+
+
+
diff --git a/client/src/components/onboarding/PersonalAddress.vue b/client/src/components/onboarding/PersonalAddress.vue
index 9cbf1d9f..81a4f571 100644
--- a/client/src/components/onboarding/PersonalAddress.vue
+++ b/client/src/components/onboarding/PersonalAddress.vue
@@ -2,7 +2,6 @@
import ItDatePicker from "@/components/ui/ItDatePicker.vue";
import { useEntities } from "@/services/entities";
import "@vuepic/vue-datepicker/dist/main.css";
-import { t } from "i18next";
import { computed } from "vue";
const props = defineProps<{
@@ -25,11 +24,6 @@ const emit = defineEmits(["update:modelValue"]);
const { countries } = useEntities();
-const paymentMethods = [
- { value: "credit_card", label: t("a.Debit-/Kreditkarte/Twint") },
- { value: "cembra_byjuno", label: t("a.Rechnung") },
-];
-
const address = computed({
get() {
return props.modelValue;
@@ -176,34 +170,6 @@ const address = computed({
-
-
-
-
-
-
-
-
-
- {{ $t("shop.paymentCembraByjunoMessage") }}
-
-
-