From 4c9e0b510d087faa6b0e91ec6776d807dc96df7e Mon Sep 17 00:00:00 2001
From: Jan-Hendrik Willms <tleilax+github@gmail.com>
Date: Thu, 17 Oct 2024 16:13:10 +0200
Subject: [PATCH] adjustments according to code review, re #4113

---
 .../vue/components/form_inputs/CaptchaInput.vue      | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/resources/vue/components/form_inputs/CaptchaInput.vue b/resources/vue/components/form_inputs/CaptchaInput.vue
index a22393c3b50..1ace43ddc42 100644
--- a/resources/vue/components/form_inputs/CaptchaInput.vue
+++ b/resources/vue/components/form_inputs/CaptchaInput.vue
@@ -1,7 +1,7 @@
 <template>
     <div class="formpart">
+        <p>{{ $gettext('An dieser Stelle prüfen wir automatisch, ob Sie ein Mensch sind.') }}</p>
         <altcha-widget :challengeurl="challengeUrl" ref="widget"></altcha-widget>
-        {{ $gettext('An dieser Stelle prüfen wir automatisch, ob Sie ein Mensch sind.') }}
     </div>
 </template>
 <script>
@@ -25,17 +25,12 @@ export default {
             validator: (value) => ['onfocus', 'onload', 'onsubmit'].includes(value),
         }
     },
-    data() {
-        return {};
-    },
-    methods: {
-    },
     mounted() {
         this.$nextTick(() => {
             this.$refs.widget.configure({
                 auto: this.auto,
                 name: this.name,
-                hidefooter: false,
+                hidefooter: true,
                 hidelogo: false,
                 strings: {
                     error: $gettext('Überprüfung fehlgeschlagen. Versuchen Sie es später erneut.'),
@@ -68,4 +63,7 @@ export default {
     --altcha-color-footer-bg: none;
     --altcha-max-width: auto;
 }
+.altcha-main {
+    padding: 0 !important;
+}
 </style>
-- 
GitLab