<div class="reminders form">
	<?php echo $this->Form->create('Reminder'); ?>
	<fieldset>
		<legend><?php echo __('Add Reminder'); ?></legend>
				<?php
		echo $this->Form->input('calendar_id');
		echo $this->Form->input('type');
		echo $this->Form->input('duration');
		echo $this->Form->input('reminderType');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

