mirror of
https://github.com/myvesta/vesta
synced 2025-08-21 13:54:28 -07:00
WEB. Improved Lets Encrypt interface
This commit is contained in:
parent
e91f5c6da8
commit
0e18fc669a
36 changed files with 122 additions and 13 deletions
|
@ -135,6 +135,11 @@
|
|||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text input-label lets-encrypt-note step-left" >
|
||||
<?= __('Your certificate will be automatically issued in 5 minutes')?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text input-label step-left">
|
||||
<?php print __('SSL Home Directory');?>
|
||||
</td>
|
||||
|
|
|
@ -187,7 +187,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td><?=__('SMTP security')?>:</td>
|
||||
<td><div id="td_smtp_encryption"><?=__('STARTTLS')?></div></td>
|
||||
<td><div id="td_smtp_encription"><?=__('STARTTLS')?></div></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><?=__('SMTP auth method')?>:</td>
|
||||
|
|
|
@ -191,6 +191,11 @@
|
|||
<label><input type="checkbox" size="20" class="vst-checkbox" name="v_letsencrypt" <?php if($v_letencrypt == 'yes' || $v_letencrypt == 'on') echo "checked=yes" ?> onclick="App.Actions.WEB.toggle_letsencrypt(this)"> <?php print __('Lets Encrypt Support');?></label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text input-label lets-encrypt-note <? if($v_letencrypt == 'yes' || $v_letencrypt == 'on') echo ' enabled';?>" >
|
||||
<?= __('Your certificate will be automatically issued in 5 minutes')?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="vst-text input-label">
|
||||
<?php print __('SSL Home Directory');?>
|
||||
|
|
|
@ -232,7 +232,13 @@ sort-bandwidth="<?=$data[$key]['U_BANDWIDTH']?>" sort-disk="<?=$data[$key]['U_DI
|
|||
<div class="l-unit__stat-cols clearfix">
|
||||
<div class="l-unit__stat-col l-unit__stat-col--left"><?=__('SSL Support')?>:</div>
|
||||
<div class="l-unit__stat-col l-unit__stat-col--right">
|
||||
<b><?=__($data[$key]['SSL'])?></b>
|
||||
<b>
|
||||
<? if(empty($data[$key]['LETSENCRYPT'])){
|
||||
echo __($data[$key]['SSL']);
|
||||
} else {
|
||||
echo __('Lets Encrypt');
|
||||
}?>
|
||||
</b>
|
||||
</div>
|
||||
</div>
|
||||
<? } ?>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue