diff --git a/templates/macros/modals.html b/templates/macros/modals.html
index c291e94..dbb8b38 100644
--- a/templates/macros/modals.html
+++ b/templates/macros/modals.html
@@ -20,6 +20,25 @@
{% endmacro %}
+{% macro alert_modal(id, title, message, btn_class='btn-primary') %}
+
+
+
+
+
+ {{ message }}
+
+
+
+
+
+{% endmacro %}
+
{% macro edit_product_modal(zonas) %}
diff --git a/templates/worker_dashboard.html b/templates/worker_dashboard.html
index 6d2eb7a..93a8752 100644
--- a/templates/worker_dashboard.html
+++ b/templates/worker_dashboard.html
@@ -1,5 +1,5 @@
{% extends "macros/base.html" %}
-{% from 'macros/modals.html' import confirm_modal %}
+{% from 'macros/modals.html' import confirm_modal, alert_modal %}
{% block title %}Rendición de Caja{% endblock %}
@@ -180,6 +180,13 @@
btn_class='btn-success',
btn_text='Sí, enviar ahora'
) }}
+
+{{ alert_modal(
+ id='globalAlertModal',
+ title='Atención',
+ message='Por favor, completa los campos requeridos.'
+) }}
+
{% endblock %}
{% block scripts %}
@@ -214,41 +221,53 @@
});