<div class="coursedetails form">
	<?php echo $this->Form->create('Coursedetail'); ?>
	<fieldset>
		<legend><?php echo __('Add Coursedetail'); ?></legend>
				<?php
		echo $this->Form->input('course_id');
		echo $this->Form->input('day');
		echo $this->Form->input('startTime');
		echo $this->Form->input('endTime');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

