Файловый менеджер - Редактировать - /home/c7lekhnath/silverray.com.au/oldsite/storage/framework/views/4693f95c64c7f0deb182ac5f0e527436.php
Назад
<?php $__env->startSection('content'); ?> <div class="card"> <div class="card-header d-flex justify-content-between"> <p>SMTP credentials setup.</p> <div> <a class="btn btn-outline-primary" href="<?php echo e(route('setup.configuration')); ?>">« Back</a> <a class="btn btn-outline-primary <?php if(!session()->has('step-6-complete')): ?> disabled <?php endif; ?>" href="<?php echo e(route('setup.complete')); ?>">Next »</a> </div> </div> <div class="card-body"> <form id="smtp_form" autocomplete="off"> <div class="mb-3"> <label>Mail Host <span class="text-danger">*</span></label> <input type="text" id="mail_host" name="mail_host" value="<?php echo e($email?->mail_host); ?>" class="form-control" placeholder="Enter Your SMTP mail host"> </div> <div class="mb-3"> <label>Email <span class="text-danger">*</span></label> <input type="email" id="email" name="email" value="<?php echo e($email?->email); ?>" class="form-control" placeholder="Enter Your SMTP email"> </div> <div class="mb-3"> <label>SMTP User Name <span class="text-danger">*</span></label> <input type="text" id="smtp_username" name="smtp_username" value="<?php echo e($email?->smtp_username); ?>" class="form-control" placeholder="Enter Your SMTP User Name"> </div> <div class="mb-3"> <label>SMTP Password <span class="text-danger">*</span></label> <input type="text" id="smtp_password" name="smtp_password" value="<?php echo e($email?->smtp_password); ?>" class="form-control" placeholder="Enter Your SMTP Password"> </div> <div class="mb-3"> <label>Mail Port <span class="text-danger">*</span></label> <input type="text" id="mail_port" name="mail_port" value="<?php echo e($email?->mail_port); ?>" class="form-control" placeholder="Enter Your SMTP Mail Port"> </div> <div class="mb-3"> <label>Mail Encryption <span class="text-danger">*</span></label> <select name="mail_encryption" id="mail_encryption" class="form-control form-select"> <option <?php echo e($email?->mail_encryption == 'tls' ? 'selected' : ''); ?> value="tls">TLS</option> <option <?php echo e($email?->mail_encryption == 'ssl' ? 'selected' : ''); ?> value="ssl">SSL</option> </select> </div> <div class="card-footer d-flex justify-content-between "> <button type="submit" id="submit_btn" class="btn btn-primary">SMTP Setup</button> <button type="button" class="btn btn-success" data-bs-toggle="modal" data-bs-target="#skipModal">Skip</button> </div> </form> </div> </div> <!-- Skip Modal --> <div class="modal" id="skipModal"> <div class="modal-dialog"> <form class="modal-content" action="<?php echo e(route('setup.smtp.skip')); ?>" method="POST"> <?php echo csrf_field(); ?> <!-- Modal Header --> <div class="modal-header"> <h4 class="modal-title">Skip SMTP Setup</h4> <button type="button" class="btn-close" data-bs-dismiss="modal"></button> </div> <!-- Modal body --> <div class="modal-body"> <p class="text-center text-danger">Skipping this step will prevent users from sending any emails or receiving verification emails.</p> </div> <!-- Modal footer --> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-bs-dismiss="modal">Close</button> <button type="submit" class="btn btn-success">Yes</button> </div> </form> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('scripts'); ?> <script> $(document).ready(function() { $(document).on('submit', '#smtp_form', async function(e) { e.preventDefault(); let mail_host = $('#mail_host').val(); let email = $('#email').val(); let smtp_username = $('#smtp_username').val(); let smtp_password = $('#smtp_password').val(); let mail_port = $('#mail_port').val(); let mail_encryption = $('#mail_encryption').val(); let submit_btn = $('#submit_btn'); if ($.trim(mail_host) === '') { toastr.warning("Mail host is required"); } else if ($.trim(email) === '') { toastr.warning("Email is required"); } else if ($.trim(smtp_username) === '') { toastr.warning("Smtp username is required"); } else if ($.trim(smtp_password) === '') { toastr.warning("Smtp password is required"); } else if ($.trim(mail_port) === '') { toastr.warning("Mail port is required"); } else if ($.trim(mail_encryption) === '') { toastr.warning("Mail encryption is required"); } else { submit_btn.html( 'Saving... <span class="spinner-border spinner-border-sm" role="status" aria-hidden="true"></span>' ).prop('disabled', true); try { const res = await makeAjaxRequest({ mail_host: mail_host, email: email, smtp_username: smtp_username, smtp_password: smtp_password, mail_port: mail_port, mail_encryption: mail_encryption, }, "<?php echo e(route('setup.smtp.update')); ?>"); if (res.success) { toastr.success(res.message); submit_btn.addClass('btn-success').html('Redirecting...'); window.location.href = "<?php echo e(route('setup.complete')); ?>"; } else { submit_btn.html('SMTP Setup').prop('disabled', false); toastr.error(res.message); } } catch (error) { submit_btn.html('SMTP Config').prop('disabled', false); $.each(error.errors, function(index, value) { toastr.error(value); }); } } }); }); </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('setup.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/lekhnath/silverray.com.au/installer/views/setup/smtp.blade.php ENDPATH**/ ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.20 | Генерация страницы: 0.02 |
proxy
|
phpinfo
|
Настройка