|
|
@@ -39,9 +39,10 @@ class InfoForm extends BaseForm implements ClientArea
|
|
|
// $message = di('lang')->absoluteT('dnsinfomessage');
|
|
|
$message = 'dnsinfomessage';
|
|
|
$this->addInternalAlert($message, null, 100);
|
|
|
- $field = new Text("maildomain");
|
|
|
- $field->setRawTitle('DNS Informationen für: ')->addHtmlAttribute('readonly','true');
|
|
|
- $this->addField($field);
|
|
|
+ $maildomain = new InputGroup('mailDomain');
|
|
|
+ $maildomain->addInputComponent((new InputGroupElements\Text('DNS Informationen für: '))->addHtmlAttribute('readonly','true'));
|
|
|
+ $maildomain->addInputComponent((new InputGroupElements\Text('maildomain'))->addHtmlAttribute('readonly','true'));
|
|
|
+ $this->addSection($maildomain);
|
|
|
$fieldl = new Text("mxthurdata");
|
|
|
$fieldl->setRawTitle('MX Eintrag ThurData Vorgabe')->addHtmlAttribute('readonly','true');
|
|
|
$fieldr = new Text("mxactive");
|