diff --git includes/install.core.inc includes/install.core.inc
index 6fed372..b63a7f1 100644
--- includes/install.core.inc
+++ includes/install.core.inc
@@ -1627,18 +1627,18 @@ function _install_configure_form($form, &$form_state, &$install_state) {
     '#attributes' => array('class' => array('username')),
   );
 
-  $form['admin_account']['account']['mail'] = array('#type' => 'textfield',
-    '#title' => st('E-mail address'),
-    '#maxlength' => EMAIL_MAX_LENGTH,
-    '#required' => TRUE,
-    '#weight' => -5,
-  );
   $form['admin_account']['account']['pass'] = array(
     '#type' => 'password_confirm',
     '#required' => TRUE,
     '#size' => 25,
     '#weight' => 0,
   );
+  $form['admin_account']['account']['mail'] = array('#type' => 'textfield',
+    '#title' => st('E-mail address'),
+    '#maxlength' => EMAIL_MAX_LENGTH,
+    '#required' => TRUE,
+    '#weight' => -5,
+  );
 
   $form['server_settings'] = array(
     '#type' => 'fieldset',
