moodle/calendar/event_delete.html
defacer 1372ef74aa When confirming deleting an event, changed OK/Cancel to Yes/No and added
some distance between those uncomfortably close buttons.
2005-02-12 14:46:20 +00:00

34 lines
1.1 KiB
HTML

<table style="margin: auto;">
<tr>
<td>
<form method="get" action="event.php" name="delete">
<p>
&nbsp;
<input type="submit" value=" <?php print_string('yes') ?> " />
<input type="hidden" name="id" value="<?php echo $event->id?>" />
<input type="hidden" name="action" value="delete" />
<input type="hidden" name="m" value="<?php echo $m; ?>" />
<input type="hidden" name="d" value="<?php echo $d; ?>" />
<input type="hidden" name="y" value="<?php echo $y; ?>" />
<input type="hidden" name="confirm" value="1" />
&nbsp;
</p>
</form>
</td>
<td>
<form method="get" action="view.php" name="cancel">
<p>
&nbsp;
<input type="submit" value=" <?php print_string('no') ?> ">
<input type="hidden" name="view" value="day" />
<input type="hidden" name="cal_m" value="<?php echo $m; ?>" />
<input type="hidden" name="cal_d" value="<?php echo $d; ?>" />
<input type="hidden" name="cal_y" value="<?php echo $y; ?>" />
&nbsp;
</p>
</form>
</td>
</tr>
</table>