<?php echo $header; ?>
<div id="content">
<div class="breadcrumb">
  <?php foreach ($breadcrumbs as $breadcrumb) { ?>
  <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
  <?php } ?>
</div>
<?php if ($error_warning) { ?>
<div class="warning"><?php echo $error_warning; ?></div>
<?php } ?>
<div class="box">
  <div class="heading">
    <h1><img src="view/image/module.png" alt="" /> <?php echo $heading_title; ?></h1>
    <div class="buttons"><a onclick="$('#form').submit();" class="button"><span><?php echo $button_save; ?></span></a><a onclick="location = '<?php echo $cancel; ?>';" class="button"><span><?php echo $button_cancel; ?></span></a></div>
  </div>
  <div class="content">
    <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="form">
      <table class="form">
	  <tr>
          <td><?php echo $entry_status; ?></td>
          <td><select name="stock_alert_status">
              <?php if ($stock_alert_status) { ?>
              <option value="1" selected="selected"><?php echo $text_enabled; ?></option>
              <option value="0"><?php echo $text_disabled; ?></option>
              <?php } else { ?>
              <option value="1"><?php echo $text_enabled; ?></option>
              <option value="0" selected="selected"><?php echo $text_disabled; ?></option>
              <?php } ?>
            </select></td>
        </tr>
        <tr>
          <td><span class="required">*</span> <?php echo $entry_message; ?></td>
          <td><textarea name="stock_alert_message" cols="40" rows="5"><?php echo $stock_alert_message; ?></textarea></td>
        </tr>
		<tr>
          <td><span class="required">*</span> <?php echo $entry_quantity; ?></td>
          <td><input type="text" name="stock_alert_quantity" value="<?php if ($stock_alert_quantity) { echo $stock_alert_quantity; } else { echo '5'; } ?>" size="3" />
            <?php if ($error_code_quantity) { ?>
            <span class="error"><?php echo $error_code_quantity; ?></span>
            <?php } ?></td>
        </tr>
		<tr>
          <td><span class="required">*</span> <?php echo $entry_option_quantity; ?></td>
          <td><input type="text" name="stock_alert_option_quantity" value="<?php if ($stock_alert_option_quantity) { echo $stock_alert_option_quantity; } else { echo '5'; } ?>" size="3" />
            <?php if ($error_code_option_quantity) { ?>
            <span class="error"><?php echo $error_code_option_quantity; ?></span>
            <?php } ?></td>
        </tr>
		<tr>
          <td><span class="required">*</span> <?php echo $entry_email; ?></td>
          <td><textarea name="stock_alert_email" cols="40" rows="5"><?php echo $stock_alert_email; ?></textarea>
          </td>
        </tr>         
      </table>
    </form>
  </div>
</div>
