From f383c3a4325bc173b6f9676274bc19694be6f9c0 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Fri, 05 Jun 2026 16:49:44 +0000
Subject: [PATCH] =Modified the Feed Fields config in Registrar, to utilize the built in functionality there
---
forms/contact.php | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/forms/contact.php b/forms/contact.php
index d636f99..45b6e42 100644
--- a/forms/contact.php
+++ b/forms/contact.php
@@ -15,10 +15,12 @@
'We\'ll get back to you as soon as we can - usually pretty quick (unless it\'s a Monday or a Tuesday)'
],
'email_subject' => '[CONTACT]',
+ 'preheader' => 'New message with the team at Legacy. Respond to this email with additional details.',
'fields' => [
'first_name' => [
'type' => 'text',
'label' => 'First Name',
+ 'autocomplete' => 'given-name',
'required' => true,
'section' => 'about_you',
],
@@ -26,11 +28,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 +42,7 @@
'type' => 'tel',
'label' => 'Phone',
'required' => true,
+ 'autocomplete' => 'tel',
'section' => 'about_you',
],
'contact' => [
@@ -52,7 +57,6 @@
],
'message' => [
'type' => 'textarea',
- 'quill' => true,
'label' => 'What do you want to say?'
]
]
--
Gitblit v1.10.0