diff --git a/Hooks/syntax.sh b/Hooks/syntax.sh
index 1fbb104..36b72df 100644
--- a/Hooks/syntax.sh
+++ b/Hooks/syntax.sh
@@ -49,28 +49,28 @@ if [[ "$FILE" =~ ^.+(tpl\.php|html)$ ]]; then
grep -P '(\)' $FILE >&2
exit 1
fi
-
+
# Input elements must have a type= attribute *error*
if [[ -n $(grep -P '(\)' $FILE) ]]; then
echo -e "\e[1;31m\tFound missing input type attribute.\e[0m" >&2
grep -P '(\)' $FILE >&2
exit 1
fi
-
+
# Form fields must have a name *error*
if [[ -n $(grep -P '(\)' $FILE) ]]; then
echo -e "\e[1;31m\tFound missing form element name.\e[0m" >&2
grep -P '(\)' $FILE >&2
exit 1
fi
-
+
# Form must have a id, action and method *error*
if [[ -n $(grep -P '(\