-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSMBWorkGroup.page
More file actions
29 lines (20 loc) · 869 Bytes
/
SMBWorkGroup.page
File metadata and controls
29 lines (20 loc) · 869 Bytes
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
26
27
28
29
Cond="($var['shareSMBEnabled']=='yes')"
Icon="icons/windows-icon.png"
Menu="SMB:20"
Title="Workgroup Settings"
---
<form markdown="1" name="WorkGroup" method="POST" action="/update.htm" target="progressFrame">
Workgroup:
: <input type="text" name="WORKGROUP" maxlength="40" value="<?=$var['WORKGROUP'];?>">
> Enter your local network Workgroup name. Usually this is "WORKGROUP".
Local master:
: <select name="localMaster">
<?=mk_option($var['localMaster'], "no", "No");?>
<?=mk_option($var['localMaster'], "yes", "Yes");?>
</select>
> If set to 'Yes' then the server will fully participate in browser elections, and in the absense
> of other servers, will usually become the local Master Browser.
: <input type="submit" name="changeShare" value="Apply">
<button type="button" onClick="done();">Done</button>
</form>