mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Added FontAwesome icons to options pages and sidebar for better visual distinction. Improved the options index page with overview cards for each settings category. Updated CSS for active and hover states in the options sidebar, providing a more modern and user-friendly interface. Added a subscription management link to the header if configured.
185 lines
No EOL
12 KiB
PHP
185 lines
No EOL
12 KiB
PHP
<div class="container settings">
|
|
|
|
<div class="row">
|
|
<!-- Nav Start -->
|
|
<?php $this->load->view('options/sidebar') ?>
|
|
<!-- Nav End -->
|
|
|
|
<!-- Content -->
|
|
<div class="col-md-9">
|
|
<div class="card">
|
|
<div class="card-header"><h2><i class="fas fa-envelope"></i> <?php echo $page_title; ?> - <?php echo $sub_heading; ?></h2></div>
|
|
|
|
<div class="card-body">
|
|
<?php if($this->session->flashdata('success')) { ?>
|
|
<!-- Display Success Message -->
|
|
<div class="alert alert-success">
|
|
<?php echo $this->session->flashdata('success'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if($this->session->flashdata('message')) { ?>
|
|
<!-- Display Message -->
|
|
<div class="alert alert-info">
|
|
<?php echo $this->session->flashdata('message'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if($this->session->flashdata('testmailFailed')) { ?>
|
|
<!-- Display testmailFailed Message -->
|
|
<div class="alert alert-danger">
|
|
<?php echo $this->session->flashdata('testmailFailed'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if($this->session->flashdata('testmailSuccess')) { ?>
|
|
<!-- Display testmailSuccess Message -->
|
|
<div class="alert alert-success">
|
|
<?php echo $this->session->flashdata('testmailSuccess'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if (isset($is_managed) && $is_managed) { ?>
|
|
<!-- Managed Email - Read-only display with test email -->
|
|
<div class="alert alert-info">
|
|
<i class="fas fa-info-circle"></i> Email settings are centrally managed and cannot be changed here.
|
|
</div>
|
|
|
|
<h5>Current Email Configuration</h5>
|
|
<table class="table table-sm">
|
|
<tr>
|
|
<th style="width: 30%;"><?php echo lang('options_outgoing_protocol'); ?>:</th>
|
|
<td><?php echo $this->optionslib->get_option('emailProtocol'); ?></td>
|
|
</tr>
|
|
<?php if($this->optionslib->get_option('emailProtocol') == 'smtp') { ?>
|
|
<tr>
|
|
<th><?php echo lang('options_smtp_encryption'); ?>:</th>
|
|
<td><?php echo $this->optionslib->get_option('smtpEncryption') ?: 'None'; ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo lang('options_smtp_host'); ?>:</th>
|
|
<td><?php echo $this->optionslib->get_option('smtpHost'); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo lang('options_smtp_port'); ?>:</th>
|
|
<td><?php echo $this->optionslib->get_option('smtpPort'); ?></td>
|
|
</tr>
|
|
<?php } ?>
|
|
<tr>
|
|
<th><?php echo lang('options_email_address'); ?>:</th>
|
|
<td><?php echo $this->optionslib->get_option('emailAddress'); ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo lang('options_email_sender_name'); ?>:</th>
|
|
<td><?php echo $this->optionslib->get_option('emailSenderName'); ?></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<hr>
|
|
<h5>Test Email</h5>
|
|
<?php echo form_open('options/sendTestMail', ['id' => 'testMailForm']); ?>
|
|
<input class="btn btn-primary" id="testMailBtn" type="submit" value="<?php echo lang('options_send_testmail'); ?>" />
|
|
<span id="testMailSpinner" class="spinner-border spinner-border-sm ms-2" role="status" aria-hidden="true" style="display: none;"></span>
|
|
<small class="form-text text-muted"><?php echo lang('options_send_testmail_hint'); ?></small>
|
|
</form>
|
|
|
|
<script>
|
|
document.getElementById('testMailForm').addEventListener('submit', function() {
|
|
document.getElementById('testMailBtn').disabled = true;
|
|
document.getElementById('testMailSpinner').style.display = 'inline-block';
|
|
});
|
|
</script>
|
|
|
|
<?php } else { ?>
|
|
<!-- Normal email configuration form -->
|
|
|
|
<div class="mb-3">
|
|
<label for="emailProtocol"><?php echo lang('options_outgoing_protocol'); ?></label>
|
|
<select name="emailProtocol" class="form-select" id="emailProtocol">
|
|
<option value="sendmail" <?php if($this->optionslib->get_option('emailProtocol')== "sendmail") { echo "selected=\"selected\""; } ?>>Sendmail</option>
|
|
<option value="smtp" <?php if($this->optionslib->get_option('emailProtocol')== "smtp") { echo "selected=\"selected\""; } ?>>SMTP</option>
|
|
</select>
|
|
<small class="form-text text-muted"><?php echo lang('options_outgoing_protocol_hint'); ?></small>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label for="smtpEncryption"><?php echo lang('options_smtp_encryption'); ?></label>
|
|
<select name="smtpEncryption" class="form-select" id="smtpEncryption">
|
|
<option value="" <?php if($this->optionslib->get_option('smtpEncryption') == "") { echo "selected=\"selected\""; } ?>>None</option>
|
|
<option value="tls" <?php if($this->optionslib->get_option('smtpEncryption') == "tls") { echo "selected=\"selected\""; } ?>>TLS</option>
|
|
<option value="ssl" <?php if($this->optionslib->get_option('smtpEncryption') == "ssl") { echo "selected=\"selected\""; } ?>>SSL</option>
|
|
</select>
|
|
<small class="form-text text-muted"><?php echo lang('options_smtp_encryption_hint'); ?></small>
|
|
</div>
|
|
|
|
<div class="mb-3 row">
|
|
<label for="emailSenderName" class="col-sm-2 col-form-label"><?php echo lang('options_email_sender_name'); ?></label>
|
|
<div class="col-sm-10">
|
|
<input type="text" name="emailSenderName" class="form-control" id="emailSenderName" value="<?php if($this->optionslib->get_option('emailSenderName') != "") { echo $this->optionslib->get_option('emailSenderName'); } ?>">
|
|
<small class="form-text text-muted"><?php echo lang('options_email_sender_name_hint'); ?></small>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3 row">
|
|
<label for="emailAddress" class="col-sm-2 col-form-label"><?php echo lang('options_email_address'); ?></label>
|
|
<div class="col-sm-10">
|
|
<input type="text" name="emailAddress" class="form-control" id="emailAddress" value="<?php if($this->optionslib->get_option('emailAddress') != "") { echo $this->optionslib->get_option('emailAddress'); } ?>">
|
|
<small class="form-text text-muted"><?php echo lang('options_email_address_hint'); ?></small>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3 row">
|
|
<label for="smtpHost" class="col-sm-2 col-form-label"><?php echo lang('options_smtp_host'); ?></label>
|
|
<div class="col-sm-10">
|
|
<input type="text" name="smtpHost" class="form-control" id="smtpHost" value="<?php if($this->optionslib->get_option('smtpHost') != "") { echo $this->optionslib->get_option('smtpHost'); } ?>">
|
|
<small class="form-text text-muted"><?php echo lang('options_smtp_host_hint'); ?></small>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3 row">
|
|
<label for="smtpPort" class="col-sm-2 col-form-label"><?php echo lang('options_smtp_port'); ?></label>
|
|
<div class="col-sm-10">
|
|
<input type="number" name="smtpPort" class="form-control" id="smtpPort" value="<?php if($this->optionslib->get_option('smtpPort') != "") { echo $this->optionslib->get_option('smtpPort'); } ?>">
|
|
<small class="form-text text-muted"><?php echo lang('options_smtp_port_hint'); ?></small>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3 row">
|
|
<label for="smtpUsername" class="col-sm-2 col-form-label"><?php echo lang('options_smtp_username'); ?></label>
|
|
<div class="col-sm-10">
|
|
<input type="text" name="smtpUsername" class="form-control" id="smtpUsername" value="<?php if($this->optionslib->get_option('smtpUsername') != "") { echo $this->optionslib->get_option('smtpUsername'); } ?>">
|
|
<small class="form-text text-muted"><?php echo lang('options_smtp_username_hint'); ?></small>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mb-3 row">
|
|
<label for="smtpPassword" class="col-sm-2 col-form-label"><?php echo lang('options_smtp_password'); ?></label>
|
|
<div class="col-sm-10">
|
|
<input type="password" name="smtpPassword" class="form-control" id="smtpPassword" value="<?php if($this->optionslib->get_option('smtpPassword') != "") { echo $this->optionslib->get_option('smtpPassword'); } ?>">
|
|
<small class="form-text text-muted"><?php echo lang('options_smtp_password_hint'); ?></small>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Save the Form -->
|
|
<input class="btn btn-primary" type="submit" value="<?php echo lang('options_save'); ?>" />
|
|
</form>
|
|
<br>
|
|
<?php echo form_open('options/sendTestMail', ['id' => 'testMailForm']); ?>
|
|
<input class="btn btn-primary" id="testMailBtn" type="submit" value="<?php echo lang('options_send_testmail'); ?>" />
|
|
<span id="testMailSpinner" class="spinner-border spinner-border-sm ms-2" role="status" aria-hidden="true" style="display: none;"></span>
|
|
<small class="form-text text-muted"><?php echo lang('options_send_testmail_hint'); ?></small>
|
|
</form>
|
|
|
|
<script>
|
|
document.getElementById('testMailForm').addEventListener('submit', function() {
|
|
document.getElementById('testMailBtn').disabled = true;
|
|
document.getElementById('testMailSpinner').style.display = 'inline-block';
|
|
});
|
|
</script>
|
|
<?php } // end else - normal email configuration ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|