File: /home/dmstechonline/crm.chaitanyahospitalvirar.com/application/config/form-builder.php
<?php
if (!defined('BASEPATH')) {
exit('No direct script access allowed');
}
$config['contact_us'] = array(
'email_title' => array( /* HIDDEN */
'id' => 'email_title',
'type' => 'hidden',
'value' => 'New Inquiry From Contact US',
'mail_response' => 'We will contact you soon.',
),
'name' => array(
'id' => 'name',
'placeholder' => lang('enter') . " " . lang('your') . " " . lang('name'),
'validation' => 'trim|required|xss_clean',
),
'email' => array(
'id' => 'email',
'type' => 'email',
'placeholder' => lang('enter') . " " . lang('your') . " " . lang('email'),
'validation' => 'trim|required|valid_email|xss_clean',
),
'subject' => array(
'id' => 'subject',
'placeholder' => lang('enter') . " " . lang('subject'),
'validation' => 'trim|required|xss_clean',
),
'description' => array( /* TEXTAREA */
'id' => 'description',
'type' => 'textarea',
'placeholder' => lang('enter') . " " . lang('description'),
),
'submit' => array( /* SUBMIT */
'id' => 'submit',
'type' => 'submit',
'class' => 'view-all-btn',
),
);
$config['complain'] = array(
'email_title' => array( /* HIDDEN */
'id' => 'email_title',
'type' => 'hidden',
'value' => 'New Inquiry From Complain',
'mail_response' => 'Thank you for your complain.',
),
'name' => array(
'id' => 'name',
'placeholder' => lang('enter') . " " . lang('your') . " " . lang('name'),
'validation' => 'trim|required|xss_clean',
),
'email' => array(
'id' => 'email',
'type' => 'email',
'placeholder' => lang('enter') . " " . lang('your') . " " . lang('email'),
'validation' => 'trim|required|valid_email|xss_clean',
),
'contact_no' => array(
'id' => 'contact',
'placeholder' => lang('enter') . " " . lang('contact_no'),
'validation' => 'trim|required|xss_clean',
),
'description' => array( /* TEXTAREA */
'id' => 'description',
'type' => 'textarea',
'placeholder' => lang('enter') . " " . lang('description'),
),
'submit' => array( /* SUBMIT */
'id' => 'submit',
'type' => 'submit',
'class' => 'view-all-btn',
),
);