diff --git a/class/datefield.php b/class/datefield.php
new file mode 100644
index 0000000000000000000000000000000000000000..b2fe5a7338ef750e1fa4500b097370b1a5b9562f
--- /dev/null
+++ b/class/datefield.php
@@ -0,0 +1,27 @@
+<?php
+{
+    public function html() {
+        $html = '<div class = "form-group">
+                    <label for = "form'.$this->name.'">
+                    <input type = "date" name = "'.$this->name.'" value ="'.$this->value.'"> '.ucfirst($this->name).'
+                    </label>
+                </div>';
+        return $html; 
+    }
+
+    public function validate()
+    {
+ 
+        /*if (isset($_POST[$this->name]))
+        {
+            $_POST[$this->name] = htmlspecialchars($_POST[$this->name]); 
+            if (preg_match("#^0[1-68]([-. ]?[0-9]{2}){4}$#", $_POST[$this->name]))
+                {
+                    $this->value = $_POST[$this->name];
+                    return true;
+                }
+        */
+        return false;
+    }
+
+}