Browse Source

new info form

andre 5 months ago
parent
commit
6277e7f2b3
1 changed files with 5 additions and 5 deletions
  1. 5 5
      app/UI/Client/Setting/Forms/InfoForm.php

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

@@ -43,14 +43,14 @@ class InfoForm extends BaseForm implements ClientArea
 //        $message = di('lang')->absoluteT('dnsinfomessage');
         $message = 'DNS Information für 
             <h4>
-                <div id="alertmaildomain"></div>
+                <div id="alertmaildomain" class="lu-form-control--lg"></div>
             </h4>
             <hr style="color:black;">
             <div class="lu-form-group">
                 <label class="lu-form-label">DNS Record Type</label>
                 <div class="lu-input-group" style="background:#eeeeee">
                     <input type="text" value="ThurData Vorgabe" readonly="readonly" class="lu-form-control" style="">
-                    <div class="lu-input-group__addon"></div>
+                    <div class="lu-input-group__addon">&hArr;</div>
                     <input type="text" value="Aktueller Wert" readonly="readonly" class="lu-form-control" style="">
                 </div>
             </div>';
@@ -62,17 +62,17 @@ class InfoForm extends BaseForm implements ClientArea
         $this->addSection($row);
         $row = new InputGroup('SPF');
         $row->addInputComponent((new InputGroupElements\Text('spfthurdata'))->addHtmlAttribute('readonly','true'));
-        $row->addInputAddon('', false, '&rarr;');
+        $row->addInputAddon('', false, '&hArr;');
         $row->addInputComponent((new InputGroupElements\Text('spf'))->addHtmlAttribute('readonly','true'));
         $this->addSection($row);
         $row = new InputGroup('DMARC');
         $row->addInputComponent((new InputGroupElements\Text('dmarcthurdata'))->addHtmlAttribute('readonly','true'));
-        $row->addInputAddon('', false, '&rarr;');
+        $row->addInputAddon('', false, '&hArr;');
         $row->addInputComponent((new InputGroupElements\Text('dmarc'))->addHtmlAttribute('readonly','true'));
         $this->addSection($row);
         $row = new InputGroup('DKIM');
         $row->addInputComponent((new InputGroupElements\Text('dkimthurdata'))->addHtmlAttribute('readonly','true'));
-        $row->addInputAddon('', false, '&rarr;');
+        $row->addInputAddon('', false, '&hArr;');
         $row->addInputComponent((new InputGroupElements\Text('dkim'))->addHtmlAttribute('readonly','true'));
         $this->addSection($row);
         $this->generateDoubleSection([new Hidden('maildomain'), new Hidden('id')]);