Jake Vanderwerf
2025-12-23 76d68c97f572120dc75d0501cc82acf4022d6b33
forms/contact.php
@@ -19,6 +19,7 @@
            'first_name'    => [
                'type'  => 'text',
                'label' => 'First Name',
                'autocomplete' => 'given-name',
                'required' => true,
                'section'   => 'about_you',
            ],
@@ -26,11 +27,13 @@
                'type'  => 'text',
                'label' => 'Last Name',
                'required' => true,
                'autocomplete'=> 'family-name',
                'section'   => 'about_you',
            ],
            'email'         => [
                'type'  => 'email',
                'label' => 'Email',
                'autocomplete'  => 'email',
                'required' => true,
                'section'   => 'about_you',
            ],
@@ -38,6 +41,7 @@
                'type'  => 'tel',
                'label' => 'Phone',
                'required' => true,
                'autocomplete'  => 'tel',
                'section'   => 'about_you',
            ],
            'contact'       => [
@@ -52,7 +56,6 @@
            ],
            'message'   => [
                'type'  => 'textarea',
                'quill' => true,
                'label' => 'What do you want to say?'
            ]
        ]