mirror of
https://github.com/moodle/moodle.git
synced 2025-08-03 08:09:47 +02:00
39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
|
|
require_once dirname(dirname(__FILE__)) . '/config.php';
|
|
httpsrequired();
|
|
|
|
$username = required_param('u', PARAM_ALPHANUM);
|
|
$sesskey = sesskey();
|
|
|
|
// if you are logged in then you shouldn't be here
|
|
if (isloggedin() and !isguest()) {
|
|
redirect( $CFG->wwwroot.'/', get_string('loginalready'), 5);
|
|
}
|
|
|
|
print_header('MNET ID Provider', 'MNET ID Provider', 'MNET ID Provider', 'form.email' );
|
|
|
|
if ($form = data_submitted() and confirm_sesskey()) {
|
|
if ($user = get_record('user', 'username', $username, 'email', $form->email)) {
|
|
if (!empty($user->mnethostid) and $host = get_record('mnet_host', 'id', $user->mnethostid)) {
|
|
notice("You should be able to login at your <a href=\"{$host->wwwroot}/login/\">{$host->name}</a> provider.");
|
|
}
|
|
}
|
|
}
|
|
|
|
echo '<p> </p>';
|
|
print_simple_box_start('center','50%','','20');
|
|
|
|
?>
|
|
<form method="post">
|
|
<input type="hidden" name="sesskey" value="<?php echo $sesskey; ?>">
|
|
<?php echo get_string('email') ?>:
|
|
<input type="text" name="email" size="" maxlength="100" />
|
|
<input type="submit" value="Find Login" />
|
|
</form>
|
|
<?php
|
|
|
|
print_simple_box_end();
|
|
print_footer();
|
|
|
|
?>
|