<div class="crtclasses form userForm">
	<?php echo $this->Form->create('Crtclass'); ?>
	<fieldset>
		<legend> <?php  echo __('Create class'); ?></legend>
		<?php
			//pr($arr_status);die();
			echo $this->Form->input('name');
			echo $this->Form->input('cournseName');
			echo $this->Form->input('instructor');
			echo $this->Form->input('description');
		?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

