* ajusted views.
* changed css names.
This commit is contained in:
@@ -19,43 +19,43 @@ include '../../common/view/header.html.php';
|
||||
<td><?php echo html::radio('turnon', $lang->mail->turnonList, 1);?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->fromAddress; ?></th>
|
||||
<td><?php echo html::input('fromAddress', $mailConfig->fromAddress, 'class=text-3');?></td>
|
||||
<th><?php echo $lang->mail->fromAddress; ?></th>
|
||||
<td><?php echo html::input('fromAddress', $mailConfig->fromAddress, "class='form-control'");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->fromName; ?></th>
|
||||
<td><?php echo html::input('fromName', $mailConfig->fromName, 'class=text-3');?></td>
|
||||
<th><?php echo $lang->mail->fromName; ?></th>
|
||||
<td><?php echo html::input('fromName', $mailConfig->fromName, "class='form-control'");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->host; ?></th>
|
||||
<td><?php echo html::input('host', $mailConfig->host, 'class=text-3');?></td>
|
||||
<th><?php echo $lang->mail->host; ?></th>
|
||||
<td><?php echo html::input('host', $mailConfig->host, "class='form-control'");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->port; ?></th>
|
||||
<td><?php echo html::input('port', $mailConfig->port, 'class=text-3');?></td>
|
||||
<th><?php echo $lang->mail->port; ?></th>
|
||||
<td><?php echo html::input('port', $mailConfig->port, "class='form-control'");?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->auth; ?></th>
|
||||
<th><?php echo $lang->mail->auth; ?></th>
|
||||
<td><?php echo html::radio('auth', $lang->mail->authList, $mailConfig->auth, 'onchange=setAuth(this.value)'); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->username; ?></th>
|
||||
<td><?php echo html::input('username', $mailConfig->username, 'class=text-3') ?></td>
|
||||
<th><?php echo $lang->mail->username; ?></th>
|
||||
<td><?php echo html::input('username', $mailConfig->username, "class='form-control'") ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->password; ?></th>
|
||||
<th><?php echo $lang->mail->password; ?></th>
|
||||
<td><?php echo html::password('password', $mailConfig->password, 'class="form-control" autocomplete="off"') ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->secure; ?></th>
|
||||
<th><?php echo $lang->mail->secure; ?></th>
|
||||
<td><?php echo html::radio('secure', $lang->mail->secureList, $mailConfig->secure); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->debug; ?></th>
|
||||
<th><?php echo $lang->mail->debug; ?></th>
|
||||
<td><?php echo html::radio('debug', $lang->mail->debugList, $mailConfig->debug);?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class='rowhead'><?php echo $lang->mail->charset; ?></th>
|
||||
<th><?php echo $lang->mail->charset; ?></th>
|
||||
<td><?php echo html::radio('charset', $config->charsets[$this->cookie->lang], $mailConfig->charset);?></td>
|
||||
</tr>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user