Browse Source

new info form

andre 5 months ago
parent
commit
2e9bef3a7c

+ 1 - 1
app/UI/Client/Setting/Forms/InfoForm.php

@@ -39,7 +39,7 @@ class InfoForm extends BaseForm implements ClientArea
     private function initFields()
     {
         $maildomain = new InputGroup('');
-        $maildomain->addInputComponent((new InputGroupElements\Text('Maildomäne'))->addHtmlAttribute('readonly','true'));
+        $maildomain->addInputComponent((new InputGroupElements\Text('dnsmessage'))->addHtmlAttribute('readonly','true'));
         $maildomain->addInputAddon('', false, '→');
         $maildomain->addInputComponent((new InputGroupElements\Text('maildomain'))->addHtmlAttribute('readonly','true'));
         $this->addSection($maildomain);

+ 1 - 0
app/UI/Client/Setting/Providers/InfoSettingDataProvider.php

@@ -100,6 +100,7 @@ class InfoSettingDataProvider extends BaseDataProvider
             $dnsok = 'danger';
         }
         $this->data = [
+            'dnsmessage' => 'DNS Informationen für',
             'maildomain' => $maildomain,
             'mxactive' => $mx,
             'spf' => $spf,