fix reset password
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 49s
Tests / PHPUnit (push) Failing after 1m20s

This commit is contained in:
root
2026-08-26 20:45:23 -04:00
parent 9899af7b37
commit a354d78fa9
11 changed files with 88 additions and 25 deletions
@@ -1,4 +1,5 @@
<!-- app/Views/user/password_reset_confirmation.php -->
<?php if (session()->getFlashdata('show_modal')): ?>
<div class="modal fade" id="emailConfirmModal" tabindex="-1" aria-labelledby="emailConfirmLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content rounded-4 shadow border-0" style="max-width: 600px; margin: auto;">
@@ -17,11 +18,10 @@
</div>
</div>
<?php if (session()->getFlashdata('show_modal')): ?>
<script>
window.addEventListener('DOMContentLoaded', function() {
const modal = new bootstrap.Modal(document.getElementById('emailConfirmModal'));
modal.show();
});
</script>
<script>
window.addEventListener('DOMContentLoaded', function() {
const modal = new bootstrap.Modal(document.getElementById('emailConfirmModal'));
modal.show();
});
</script>
<?php endif; ?>