Add some bots
[infodrom.org/www.zeitungsliste.de] / templates / contact.js
index 8eeaee5..f8c5d42 100644 (file)
@@ -3,6 +3,7 @@ function check_contactform()
   var topic = document.getElementById('topic');
   var body = document.getElementById('body');
   var email = document.getElementById('email');
+  var pivot = document.getElementById('pivot');
 
   if (!topic || !body)
     return false;
@@ -17,6 +18,11 @@ function check_contactform()
       return false;
   }
 
+  if (pivot.value.length == 0) {
+      alert('Beantworten Sie bitte die Testfrage!');
+      return false;
+  }
+
   if (email.value.length > 0 && !zlist_valid_email(email.value)) {
       alert('Die angegebene Mail-Adresse ist ungültig.');
       return false;