summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSashi202021-01-14 13:37:03 +0530
committerSashi202021-01-14 13:37:03 +0530
commit7b55a9bbb7b6165bfd88cb94bb4096f4335a32d9 (patch)
tree98222b6cf043725b2fcba03c32f151aaa82a4450
parentf811a64980786cb9b64e2da6e169a12b709739ea (diff)
downloadosdag_installer_response_form-7b55a9bbb7b6165bfd88cb94bb4096f4335a32d9.tar.gz
osdag_installer_response_form-7b55a9bbb7b6165bfd88cb94bb4096f4335a32d9.tar.bz2
osdag_installer_response_form-7b55a9bbb7b6165bfd88cb94bb4096f4335a32d9.zip
Add text about forums below the user information form
-rwxr-xr-xinstaller_response_form.module17
1 files changed, 13 insertions, 4 deletions
diff --git a/installer_response_form.module b/installer_response_form.module
index 09877a8..9d42b05 100755
--- a/installer_response_form.module
+++ b/installer_response_form.module
@@ -111,12 +111,12 @@ function data_submission_form($form, &$form_state) {
'#type' => 'item',
'#attributes' => array('readonly' => 'readonly'),
'#markup' => t('
-<center><p style="font-size:12px;">Osdag®️ license and its resources are completely free of cost!</p>
+<center><p style="font-size:14px;">Osdag®️ license and its resources are completely free of cost!</p>
-<p style="font-size:12px;">Osdag®️ and the Osdag logo are the registered trademarks of the Indian Institute of Technology, Bombay</p></center>
+<p style="font-size:14px;">Osdag®️ and the Osdag logo are the registered trademarks of the Indian Institute of Technology, Bombay</p></center>
-<p style="font-size:12px;">Please fill the `Osdag User Information Form’ given below. Your data is completely safe with IIT Bombay and shall be used only for internal quality assessment by the team, sending timely e-mail notification(s) regarding Osdag events/workshops, installer updates/patches, etc.
-</p><p style="font-size:12px;">
+<p style="font-size:14px;">Please fill the `Osdag User Information Form’ given below. Your data is completely safe with IIT Bombay and shall be used only for internal quality assessment by the team, sending timely e-mail notification(s) regarding Osdag events/workshops, installer updates/patches, etc.
+</p><p style="font-size:14px;">
We will not spam you with frequent emails!</p>'),
);
@@ -202,6 +202,15 @@ $form['release_date'] = array(
'#submit' => array('data_submission_form_skip_submit'),*/
);
+ $form['forum_text'] = array(
+ '#type' => 'item',
+ //'#attributes' => array('readonly' => 'readonly'),
+ '#markup' => t('
+<center><h6>Did you know?</h6></center>
+<p style="font-size:14px;">You can ask queries related to Osdag and take part in discussions by connecting with the Osdag team and other users through the FOSSEE Forums. Click <a href="https://forums.fossee.in/accounts/register/" target="_blank">here</a> to get started.</p>'),
+
+);
+
return $form;
}