المشكلة في الصور أنك قمت بوضح 3 صور لوسم <body> تتغير كل 3 ثواني وهي بالفعل مناسبة لحجم الشاشة ، وأيضا واضع slideshow فيه نفس الصور ولكن حجمها صغير لذلك تظهر صورتين في الشاشة، لذلك يجب الإبقاء على أحد منهما.
يبدو أنك لم تكمل كتابة كود التحقق من الحقول لذلك يجب كتابة الكود التالي أسفل الصفحة ، وحذف خاصية required من inputs
<script>
$(function() {
$("#commenForm").validate({
rules: {
// The key name on the left side is the name attribute
// of an input field. Validation rules are defined
// on the right side
name: "required",
email: {
required: true,
// Specify that email should be validated
// by the built-in "email" rule
email: true
},
comment: "required",
},
// Specify validation error messages
messages: {
name: "Please enter your firstname",
email: "Please enter a valid email address",
comment: "Please enter your lastname",
},
// Make sure the form is submitted to the destination defined
// in the "action" attribute of the form when valid
submitHandler: function(form) {
form.submit();
}
});
});
</script>
وهذا الملف تم تصحيح جميع الأخطاء فيه templete 1.zip