diff --git a/views/leases/move_in.ctp b/views/leases/move_in.ctp
index e8dcd2b..76be016 100644
--- a/views/leases/move_in.ctp
+++ b/views/leases/move_in.ctp
@@ -139,8 +139,15 @@ echo $form->input("Lease.unit_id",
'type' => 'hidden',
'value' => 0));
-echo 'Date:
' . "\n";
-echo 'Comment:
' . "\n";
+echo $this->element('form_table',
+ array('class' => "item move-in entry",
+ 'field_prefix' => 'Lease',
+ 'fields' => array
+ ("movein_date" => array('opts' => array('type' => 'text',
+ 'id' => 'datepicker')),
+ "comment" => array('opts' => array('size' => 50)),
+ )));
+
echo $form->end('Move In Customer');
?>
diff --git a/views/leases/move_out.ctp b/views/leases/move_out.ctp
index db4a657..bf976ac 100644
--- a/views/leases/move_out.ctp
+++ b/views/leases/move_out.ctp
@@ -39,6 +39,17 @@ echo('
Be sure that you really want to move this customer out, ' . 'and press the "Perform Move Out" button.' . "\n"); echo '
' . "\n";
+?>
+
+
+
+create(null, array('id' => 'move-out-form',
'url' => array('controller' => 'leases',
'action' => 'move_out')));
@@ -46,7 +57,6 @@ echo $form->create(null, array('id' => 'move-out-form',
// REVISIT