<?php

{% include "global_header.twig" %}

/**
 * Moodle form
 *
 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
 * @copyright
 * @package
 * @subpackage
 * @author {{ author }}
 */

defined('MOODLE_INTERNAL') || die();

require_once($CFG->libdir . '/formslib.php');

class {{ formName }}_form extends moodleform {

    // Define the form
    function definition() {
        global $USER, $CFG, $COURSE;

        $mform = $this->_form;
        $userid = $USER->id;
        $strrequired = get_string('required');

        // Uncomment to disable "Are you sure?" alert when user tries to leave the page.
        // $mform->disable_form_change_checker();

/** MOOSH AUTO-GENERATED */

        $this->add_action_buttons();
    }
}
