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/partner.php | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/forms/partner.php b/forms/partner.php
index 2e1cd76..a1b9ed4 100644
--- a/forms/partner.php
+++ b/forms/partner.php
@@ -11,11 +11,12 @@
'We got it.',
'We\'ll get back to you as soon as we can - usually pretty quick (unless it\'s a Monday or a Tuesday)'
],
- 'email_subject' => '[Partner] Inquiry',
+ 'email_subject' => '[Partner] Inquiry','preheader' => 'New message with the team at Legacy. Respond to this email with additional details.',
'fields' => [
- 'your_name' => [
+ 'name' => [
'type' => 'text',
'label' => 'Your Name',
+ 'autocomplete' => 'name',
'required'=> true,
'section' => 'about_you',
],
@@ -28,6 +29,7 @@
'email' => [
'type' => 'email',
'label' => 'Email',
+ 'autocomplete' => 'email',
'required' => true,
'section' => 'about_you',
],
@@ -35,6 +37,7 @@
'type' => 'tel',
'label' => 'Phone',
'required' => true,
+ 'autocomplete' => 'tel',
'section' => 'about_you',
],
'contact' => [
@@ -68,7 +71,7 @@
'doctor' => 'Healthcare Provider',
'mental_health' => 'Mental Health Services',
'indigenous' => 'Indigenous Services',
- 'other'
+ 'other' => 'Other',
],
'section' => 'organization'
],
@@ -95,7 +98,6 @@
'notes' => [
'type' => 'textarea',
'label' => 'Tell us more',
- 'quill' => true,
'section' => 'referrals',
'hint' => 'What would be most helpful for us to know about your organization and the people you serve?'
]
--
Gitblit v1.10.0