diff --git a/src/components/Profile.vue b/src/components/Profile.vue index 9af3209..9ee3205 100644 --- a/src/components/Profile.vue +++ b/src/components/Profile.vue @@ -80,6 +80,7 @@ class="w-full dark:bg-gray-800 rounded border border-gray-700 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-900 text-base outline-none dark:text-gray-100 text-gray-600 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out" type="text" :placeholder="[[$t('vorname')]]" + v-model="state.firstname" />
@@ -89,6 +90,7 @@ class="w-full dark:bg-gray-800 rounded border border-gray-700 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-900 text-base outline-none dark:text-gray-100 text-gray-600 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out" type="text" :placeholder="[[$t('mittelname')]]" + v-model="state.middlename" />
@@ -98,6 +100,7 @@ type="text" class="w-full dark:bg-gray-800 rounded border border-gray-700 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-900 text-base outline-none dark:text-gray-100 text-gray-600 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out" :placeholder="[[$t('nachname')]]" + v-model="state.lastname" />
@@ -107,6 +110,7 @@ type="email" class="w-full dark:bg-gray-800 rounded border border-gray-700 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-900 text-base outline-none dark:text-gray-100 text-gray-600 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out" :placeholder="[[$t('e_mail_adress')]]" + v-model="state.email" />
@@ -116,6 +120,7 @@ type="tel" class="w-full dark:bg-gray-800 rounded border border-gray-700 focus:border-indigo-500 focus:ring-2 focus:ring-indigo-900 text-base outline-none dark:text-gray-100 text-gray-600 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out" :placeholder="[[$t('phone_number')]]" + v-model="state.phone" />
@@ -176,13 +181,30 @@ \ No newline at end of file