<div class="multicourses form">
	<?php echo $this->Form->create('Multicourse'); ?>
	<fieldset>
		<legend><?php echo __('Add Multicourse'); ?></legend>
				<?php
		echo $this->Form->input('shortname');
		echo $this->Form->input('title');
		echo $this->Form->input('startdate');
		echo $this->Form->input('enddate');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

