Worked on image save as a file in Moodle.
[moodle/mihaisucan.git] / auth / email / config.html
blob71b9536780f861dbf1626060a538c3b5b4310fc3
1 <!-- No config needed -->
2 <?php
3 // set to defaults if undefined
4 if (!isset($config->recaptcha)) {
5 $config->recaptcha = false;
8 $yesno = array( get_string('no'), get_string('yes') );
12 <table cellspacing="0" cellpadding="5" border="0">
13 <tr>
14 <td colspan="3">
15 <h2 class="main"><?php print_string('auth_emailsettings', 'auth') ?> </h2>
16 </td>
17 </tr>
18 <tr>
19 <td align="right"><label for="menurecaptcha"><?php print_string('auth_emailrecaptcha_key', 'auth') ?></label></td>
20 <td><?php choose_from_menu($yesno, 'recaptcha', $config->recaptcha, ''); ?></td>
21 <td><?php print_string('auth_emailrecaptcha', 'auth') ?></td>
22 </tr>
23 <?php
25 print_auth_lock_options('email', $user_fields, get_string('auth_fieldlocks_help', 'auth'), false, false);
28 </table>