57 lines
2.5 KiB
PHP
Executable File
57 lines
2.5 KiB
PHP
Executable File
<!--sidebar end-->
|
|
<!--main content start-->
|
|
<section id="main-content">
|
|
<section class="wrapper site-min-height">
|
|
<!-- page start-->
|
|
<div class="col-md-8">
|
|
<section class="panel">
|
|
<header class="panel-heading">
|
|
<?php echo lang('email_settings'); ?>
|
|
</header>
|
|
<div class="panel-body">
|
|
<div class="adv-table editable-table ">
|
|
<div class="clearfix">
|
|
<?php echo validation_errors(); ?>
|
|
<form role="form" action="email/addNewSettings" class="clearfix" method="post" enctype="multipart/form-data">
|
|
<div class="form-group">
|
|
<label for="exampleInputEmail1"> <?php echo lang('admin'); ?> <?php echo lang('email'); ?></label>
|
|
<input type="text" class="form-control" name="email" id="exampleInputEmail1" value='<?php
|
|
if (!empty($settings->admin_email)) {
|
|
echo $settings->admin_email;
|
|
}
|
|
?>' placeholder="From which you want to send the email">
|
|
</div>
|
|
|
|
<code>
|
|
<?php echo lang('email_settings_instruction_1')?>
|
|
<br>
|
|
<?php echo lang('email_settings_instruction_2')?>
|
|
</code>
|
|
|
|
|
|
<input type="hidden" name="id" value='<?php
|
|
if (!empty($settings->id)) {
|
|
echo $settings->id;
|
|
}
|
|
?>'>
|
|
<div class="form-group">
|
|
<button type="submit" name="submit" class="btn btn-info pull-right"><?php echo lang('submit'); ?></button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<!-- page end-->
|
|
</section>
|
|
</section>
|
|
<!--main content end-->
|
|
<!--footer start-->
|
|
|
|
<script src="common/js/codearistos.min.js"></script>
|
|
<script>
|
|
$(document).ready(function () {
|
|
$(".flashmessage").delay(3000).fadeOut(100);
|
|
});
|
|
</script>
|