diff options
Diffstat (limited to 'proposal.inc')
-rw-r--r-- | proposal.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/proposal.inc b/proposal.inc index 0f180d4..a699a48 100644 --- a/proposal.inc +++ b/proposal.inc @@ -86,7 +86,8 @@ function scilab_case_study_proposal_form($form, &$form_state, $no_js_use = FALSE '#attributes' => array( 'placeholder' => t('Enter your contact number') ), - '#maxlength' => 250 + '#maxlength' => 10, + '#required' => TRUE ); $form['university'] = array( '#type' => 'textfield', @@ -240,7 +241,8 @@ function scilab_case_study_proposal_form($form, &$form_state, $no_js_use = FALSE $form['pincode'] = array( '#type' => 'textfield', '#title' => t('Pincode'), - '#size' => 6 + '#size' => 6, + '#maxlength' => 6 ); /***************************************************************************/ $form['hr'] = array( |