diff --git a/example_app.module b/example_app.module
index cb36c4c..e974903 100644
--- a/example_app.module
+++ b/example_app.module
@@ -45,10 +45,26 @@ function example_app_apps_app_info() {
  */
 function example_app_app_configure_form() {
   $form = array();
-  $form['text'] = array(
+  $form['name'] = array(
     '#type' => 'textfield',
-    '#title' => t('Meaningless field'),
+    '#title' => t('What is your name?'),
   );
+  $form['quest'] = array(
+    '#type' => 'textfield',
+    '#title' => t('What is your quest?'),
+  );
+  if ((bool) (rand() % 2)) {
+    $form['color'] = array(
+      '#type' => 'textfield',
+      '#title' => t('What is your favorite color'),
+    );
+  }
+  else {
+    $form['windspeed'] = array(
+      '#type' => 'textfield',
+      '#title' => t('What is the wind speed velocity of an unladen swallow?'),
+    );
+  }
   $form['submit'] = array(
     '#type' => 'submit',
     '#value' => t('Save settings'),
@@ -61,4 +77,4 @@ function example_app_app_configure_form() {
  */
 function example_add_app_configure_form_submit($form, &$form_state){
   // Use this to set configurations for modules controlled by your application.
-}
\ No newline at end of file
+}
