Adding some fields to the end of the application form
authorSteve Sutton <steve@gaslightmedia.com>
Mon, 25 Jan 2016 18:49:45 +0000 (13:49 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Mon, 25 Jan 2016 18:49:45 +0000 (13:49 -0500)
text
full name and date fields and required checkbox

config/settings2.php

index 5e63e6a..6028a94 100644 (file)
@@ -164,6 +164,59 @@ for ($i = 1; $i <= 3; ++$i) {
         'hdr'   => $yearHdr
     ];
 }
+$name_of_applicant = [
+    'type'  => 'text',
+    'name'  => 'name_of_applicant',
+    'label' => 'Name of Applicant',
+    'grid'  => 6,
+    'req'   => true
+];
+$date_of_form = [
+    'type'  => 'text',
+    'name'  => 'date_of_form',
+    'label' => 'Date',
+    'grid'  => 6,
+    'req'   => true
+];
+$agree_form_waiver = [
+    'type'  => 'checkbox',
+    'name'  => 'agree_form_waiver',
+    'label' => 'Do you agree to the above terms? By clicking Yes, you consent '
+    . 'that you have read and understand the above terms.',
+    'grid' => 4,
+    'req'   => true,
+    'opts'  => [[
+        'name' => 'agree_form_waiver',
+        'label' => 'I Agree',
+        'value' => 1
+    ]]
+];
+$agreementText = [
+    'type'      => 'header',
+    'label'     => 'Please Read Carefully',
+    'notes'     => '<p>Upon the signing of this application, I represent that all
+    information now or hereafter given by me in support of my application is true and complete.
+    I authorize you to verify any of the information concerning my past employment, education,
+    and references with the appropriate individuals, companies, institutions or agencies, and
+    I authorize them to release such information as you require without any obligation to give
+    me such notice of such disclosure. I also authorize Stafford’s to release any information
+    requested by any of my prospective or subsequent employers without any obligation to give
+    me notice of such disclosure. I hereby release Stafford’s and them from any liability
+    whatsoever as a result of any such inquires or disclosures. I agree that any false information
+    in support of my application may subject me to discipline and discharge at any time during
+    the period of my employment with Stafford’s</p>
+    <p>I agree that either party may terminate the employment relationship, with or without cause,
+    at any time, and I further agree that this arrangement may only be altered in writing directed
+    at me personally and signed by the president of Stafford’s. I agree that I shall be bound by
+    any and all rules, policies, regulations, terms and conditions of employment of the firm as
+    they are from time to time changed.</p>
+    <p>I authorize investigation of my personal history, financial and credit record, criminal history
+    and/or driving history through any investigative agencies of the company’s choice and will sign
+    all necessary authorizations to allow such an investigation.</p>
+    <p>I understand that a false statement, false answer, misrepresentation or omission of information
+    in response to any question will be sufficient grounds for rejection of my application or my
+    immediate discharge.</p>'
+];
 $form = [
     ['type' => 'header', 'label' => ''],
     [$why_do_you_want_to_work_for_staffords],
@@ -208,5 +261,8 @@ $form = [
     ['type' => 'header', 'label' => 'Resume Upload'],
     [$resume_file],
     ['type' => 'header', 'label' => ''],
-    [$additional_comments]
+    [$additional_comments],
+    $agreementText,
+    [$name_of_applicant, $date_of_form],
+    [$agree_form_waiver]
 ];