diff --git a/src/components/Register.vue b/src/components/Register.vue index eafd7ee..b8256e2 100644 --- a/src/components/Register.vue +++ b/src/components/Register.vue @@ -19,7 +19,7 @@ :placeholder="[[$t('vorname')]]" type="text" :class="{ 'border-red-500': (!userdetails.firstname.trim()), 'border-green-300': (userdetails.firstname.trim()) }" - class="dark:bg-gray-800 mt-1 focus:ring-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" + class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border-gray-300 border-2 bg-gray-50 text-gray-500 rounded-md p-2" /> {{ $t('mittelname') }} @@ -30,7 +30,7 @@ autocomplete="off" :placeholder="[[$t('mittelname')]]" type="text" - class="dark:bg-gray-800 mt-1 focus:ring-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" + class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border-gray-300 border-2 bg-gray-50 text-gray-500 rounded-md p-2" /> @@ -45,7 +45,7 @@ :placeholder="[[$t('nachname')]]" type="text" :class="{ 'border-red-500': (!userdetails.lastname.trim()), 'border-green-300': (userdetails.lastname.trim()) }" - class="dark:bg-gray-800 mt-1 focus:ring-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" + class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border-gray-300 border-2 bg-gray-50 text-gray-500 rounded-md p-2" /> @@ -60,7 +60,7 @@ placeholder="E-Mail Adresse" type="email" :class="{ 'border-red-500': (!isEmail(userdetails.mail)), 'border-green-300': (isEmail(userdetails.mail)) }" - class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border bg-gray-50 text-gray-500 rounded-md p-2" + class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border-2 bg-gray-50 text-gray-500 rounded-md p-2" /> {{ $t('please_provide_valid_mail') }} @@ -73,7 +73,7 @@ :placeholder="[[$t('phone_number')]]" type="tel" :class="{ 'border-red-500': (!phone_valid), 'border-green-300': (phone_valid) }" - class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border bg-gray-50 text-gray-500 rounded-md p-2" + class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border-2 bg-gray-50 text-gray-500 rounded-md p-2" /> @@ -85,7 +85,7 @@ id="address_activated" name="address_activated" type="checkbox" - class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded" + class="h-4 w-4 text-indigo-600 border-gray-300 rounded" /> @@ -104,7 +104,7 @@ :placeholder="[[$t('strasse')]]" id="street" autocomplete="street-address" - class="dark:bg-gray-800 mt-1 focus:ring-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" + class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border-gray-300 border-2 bg-gray-50 text-gray-500 rounded-md p-2" /> @@ -114,7 +114,7 @@ name="city" :placeholder="[[$t('ort')]]" id="city" - class="dark:bg-gray-800 mt-1 focus:ring-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" + class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border-gray-300 border-2 bg-gray-50 text-gray-500 rounded-md p-2" /> @@ -125,7 +125,7 @@ :placeholder="[[$t('plz')]]" id="postal_code" autocomplete="postal-code" - class="dark:bg-gray-800 mt-1 focus:ring-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 border bg-gray-50 text-gray-500 rounded-md p-2" + class="dark:bg-gray-800 mt-1 block w-full shadow-sm sm:text-sm border-gray-300 border-2 bg-gray-50 text-gray-500 rounded-md p-2" /> @@ -137,7 +137,7 @@ id="agb_accepted" name="agb_accepted" type="checkbox" - class="focus:ring-indigo-500 h-4 w-4 text-indigo-600 border-gray-300 rounded" + class="h-4 w-4 text-indigo-600 border-gray-300 rounded" /> @@ -152,7 +152,7 @@ @click="login" :disabled="(agb_accepted === false)" :class="{ 'opacity-50': (agb_accepted === false), 'cursor-not-allowed': (agb_accepted === false) }" - class="text-white block w-full text-center py-2 px-3 border border-gray-300 rounded-md p-1 bg-blue-800 font-medium hover:border-gray-400 focus:outline-none focus:border-gray-400 sm:text-sm" + class="text-white block w-full text-center py-2 px-3 border-2 border-gray-300 rounded-md p-1 bg-blue-800 font-medium hover:border-gray-400 focus:outline-none focus:border-gray-400 sm:text-sm" >{{ $t('registrieren') }} @@ -168,7 +168,7 @@ {{ $t('go_to_login') }}
{{ $t('please_provide_valid_mail') }}