From 76d68c97f572120dc75d0501cc82acf4022d6b33 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 23 Dec 2025 20:14:14 +0000
Subject: [PATCH] =legacy rebrand finished

---
 forms/get-an-estimate.php |   12 ++++++++++--
 1 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/forms/get-an-estimate.php b/forms/get-an-estimate.php
index 1a8db32..1904a55 100644
--- a/forms/get-an-estimate.php
+++ b/forms/get-an-estimate.php
@@ -15,24 +15,28 @@
             'first_name'    => [
                 'type'  => 'text',
                 'label' => 'First Name',
+                'autocomplete'=> 'given-name',
                 'required' => true,
                 'section'   => 'about_you',
             ],
             'last_name'     => [
                 'type'  => 'text',
                 'label' => 'Last Name',
+                'autocomplete' => 'family-name',
                 'required' => true,
                 'section'   => 'about_you',
             ],
             'email'         => [
                 'type'  => 'email',
                 'label' => 'Email',
+                'autocomplete' => 'email',
                 'required' => true,
                 'section'   => 'about_you',
             ],
             'phone'         => [
                 'type'  => 'tel',
                 'label' => 'Phone',
+                'autocomplete' => 'tel',
                 'required' => true,
                 'section'   => 'about_you',
             ],
@@ -48,7 +52,6 @@
             ],
             'age'   => [
                 'type'      => 'text',
-                'subtype'   => 'number',
                 'label'     => 'How old is your tattoo?',
                 'section'   => 'tattoo',
             ],
@@ -82,10 +85,15 @@
                 'section'   => 'tattoo',
             ],
             'photos'        => [
-                'type'  => 'gallery',
+                'type'  => 'upload',
                 'label' => 'Photo(s) of Tattoo',
                 'section'   => 'tattoo',
                 'description'   => 'Make sure we can get a sense of scale.'
+            ],
+            'notes' => [
+                'type'  => 'textarea',
+                'label' => 'Anything else to add?',
+                'section'   => 'tattoo',
             ]
         ]
     ];

--
Gitblit v1.10.0