mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
34 lines
1022 B
HTML
34 lines
1022 B
HTML
<form method="post" action="module.php" name="form">
|
|
<input type="hidden" name="sesskey" value="<?php echo $USER->sesskey ?>">
|
|
|
|
<table cellpadding="9" cellspacing="0">
|
|
<tr valign="top">
|
|
<td align="right">server_url:</td>
|
|
<td> <input name="lams_serverurl" type="text" size="50" value="<?php p($CFG->lams_serverurl) ?>"></td>
|
|
<td>
|
|
<?php print_string('serverurl', 'lams') ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">server_id:</td>
|
|
<td> <input name="lams_serverid" type="text" size="50" value="<?php p($CFG->lams_serverid) ?>"> </td>
|
|
<td>
|
|
<?php print_string('serverid', 'lams') ?>
|
|
</td>
|
|
</tr>
|
|
<tr valign="top">
|
|
<td align="right">server_key:</td>
|
|
<td> <input name="lams_serverkey" type="text" size="50" value="<?php p($CFG->lams_serverkey) ?>"> </td>
|
|
<td>
|
|
<?php print_string('serverkey', 'lams') ?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="3" align="center">
|
|
<input type="submit" value="<?php print_string("savechanges") ?>"></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|