mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
28b592d5a6
New accounts and linking a login to an existing account MUST go through email verification. We cannot trust the emails we get from oauth providers have been confirmed. Part of MDL-58220
13 lines
444 B
HTML
13 lines
444 B
HTML
<!-- No config needed -->
|
|
<div style="text-align: center"><?php print_string('plugindescription', 'auth_oauth2'); ?></div>
|
|
|
|
<div class="alert alert-warning m-y-2" style="text-align: center"><?php print_string('createaccountswarning', 'auth_oauth2'); ?></div>
|
|
|
|
<table cellspacing="0" cellpadding="5" border="0">
|
|
<?php
|
|
|
|
print_auth_lock_options($this->authtype, $userfields, get_string('auth_fieldlocks_help', 'auth'), false, false);
|
|
|
|
?>
|
|
</table>
|