mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 14:03:52 +01:00
15 lines
800 B
HTML
15 lines
800 B
HTML
<form name="form" method="post" action="<?php echo "$CFG->wwwroot/course/mod.php" ?>">
|
|
|
|
<input type="hidden" name="mode" value="delete" />
|
|
<input type="hidden" name="section" value="<?php p($form->section) ?>" />
|
|
<input type="hidden" name="course" value="<?php p($form->course) ?>" />
|
|
<input type="hidden" name="sesskey" value="<?php p($form->sesskey) ?>" />
|
|
<input type="hidden" name="coursemodule" value="<?php p($form->coursemodule) ?>" />
|
|
<input type="hidden" name="modulename" value="<?php p($form->modulename) ?>" />
|
|
<input type="hidden" name="instance" value="<?php p($form->instance) ?>" />
|
|
|
|
<input type="submit" value=" <?php print_string("yes")?> " />
|
|
<input type="button" value=" <?php print_string("no")?> " onclick="javascript:history.go(-1);" />
|
|
|
|
</form>
|