Skip to content

Instantly share code, notes, and snippets.

Created January 17, 2015 12:50
Show Gist options
  • Save anonymous/0b7e58a903361439befc to your computer and use it in GitHub Desktop.
Save anonymous/0b7e58a903361439befc to your computer and use it in GitHub Desktop.
<!-- app/View/Wafers/add.ctp -->
<div class="wafers form">
<?php echo $this->Form->create('Wafer'); ?>
<fieldset>
<legend><?php echo __('Add Wafer'); ?></legend>
<?php
echo $this->Form->input('wafer_name');
echo $this->Form->input('maskset_id');
echo $this->Form->input('designkit_id');
echo $this->Form->input('info_id');
?>
</fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment