moodle-auth_nopin/reset.php
2022-08-20 08:38:24 +00:00

16 lines
798 B
PHP

<?php
require_once('../../config.php');
$PAGE->set_context(get_system_context());
$PAGE->set_pagelayout('admin');
$PAGE->set_title("Password Reset");
$PAGE->set_url($CFG->wwwroot.'/auth/reset.php');
echo $OUTPUT->header();
echo '<h1>Forgot your password?</h1>';
echo '<p>If you are a crew member, please keep in mind that you cannot directly login to the sea chefs Academy. Please use the <a href="https://crewcheck.seachefs.com/">Crew Check Portal</a> to login instead.</p>';
echo '<p><a class="btn-primary" href="https://crewcheck.seachefs.com/">To the Crew Check Portal</a></p>';
echo '<p>If you are sea chefs office staff, or if you still need assistance, please send an email to <a href="mailto:digital-learning@seachefs.com">the digital learning team</a>.</p>';
echo $OUTPUT->footer();
?>