|
|
@@ -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">⇔</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, '→');
|
|
|
+ $row->addInputAddon('', false, '⇔');
|
|
|
$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, '→');
|
|
|
+ $row->addInputAddon('', false, '⇔');
|
|
|
$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, '→');
|
|
|
+ $row->addInputAddon('', false, '⇔');
|
|
|
$row->addInputComponent((new InputGroupElements\Text('dkim'))->addHtmlAttribute('readonly','true'));
|
|
|
$this->addSection($row);
|
|
|
$this->generateDoubleSection([new Hidden('maildomain'), new Hidden('id')]);
|