Payroll Entry - Validate Attendance (#14738)

diff --git a/erpnext/public/build.json b/erpnext/public/build.json
index 24ccfbf..ed4ebab 100644
--- a/erpnext/public/build.json
+++ b/erpnext/public/build.json
@@ -30,6 +30,7 @@
         "public/js/payment/pos_payment.html",
         "public/js/payment/payment_details.html",
         "public/js/templates/item_selector.html",
+				"public/js/templates/employees_to_mark_attendance.html",
         "public/js/utils/item_selector.js",
         "public/js/help_links.js",
         "public/js/agriculture/ternary_plot.js",
diff --git a/erpnext/public/js/templates/employees_to_mark_attendance.html b/erpnext/public/js/templates/employees_to_mark_attendance.html
new file mode 100644
index 0000000..167c775
--- /dev/null
+++ b/erpnext/public/js/templates/employees_to_mark_attendance.html
@@ -0,0 +1,14 @@
+{% if data %}
+<div class="col-md-12 col-xs-12" align="center">
+	<div class="col-md-12 col-xs-12" style="padding-bottom:15px;">
+		<b>Employees to mark attendance</b>
+	</div>
+	{% for item in data %}
+	<div class="col-md-4 col-xs-6" style="padding-bottom:10px;">
+		{{ item.employee }} &nbsp;&nbsp; {{ item.employee_name }}
+	</div>
+	{% } %}
+</div>
+{% } else { %}
+<div></div>
+{% } %}