-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.html
25 lines (21 loc) · 923 Bytes
/
config.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<form method="post" action="module.php" id="form">
<div>
<input type="hidden" name="sesskey" value="<?php echo $USER->sesskey ?>" />
<table cellpadding="9" cellspacing="0" >
<tr valign="top">
<td align="right">programming_ojip:</td>
<td><input type="text" size="30" name="programming_ojip" value="<?php echo empty($CFG->programming_ojip) ? '' : $CFG->programming_ojip; ?>" /></td>
<td><?php print_string("configojip", 'programming'); ?></td>
</tr>
<tr valign="top">
<td align="right">programming_moss_userid:</td>
<td><input type="text" size="30" name="programming_moss_userid" value="<?php echo empty($CFG->programming_moss_userid) ? '' : $CFG->programming_moss_userid; ?>" /></td>
<td><?php print_string("configmossuserid", 'programming'); ?></td>
</tr>
<tr>
<td colspan="3" align="center">
<input type="submit" value="<?php print_string("savechanges") ?>" /></td>
</tr>
</table>
</div>
</form>