forked from phpvirtualbox/phpvirtualbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvmmISCSI.html
51 lines (47 loc) · 1.66 KB
/
vmmISCSI.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!--
Add iSCSI disk dialog
Copyright (C) 2010-2015 Ian Moore (imoore76 at yahoo dot com)
$Id: vmmISCSI.html 595 2015-04-17 09:50:36Z imoore76 $
-->
<div id='vboxISCSI'>
<form name='vboxISCSIForm' style='width:100%;'>
<table class='vboxVertical' style='width: 100%;'>
<tr>
<th><span class='translate'>Server</span>:</th>
<td><input type='text' name='vboxISCSIServer' class='vboxText' /></td>
</tr>
<tr>
<th><span class='translate'>Port</span>:</th>
<td><input type='text' name='vboxISCSIPort' class='vboxText' /></td>
</tr>
<tr>
<th></th>
<td><label><input type='checkbox' name='vboxISCSIIntnet' class='vboxCheckbox' /> <span class='translate'>Internal Networking</span></label></td>
</tr>
<tr>
<th><span class='translate'>Target</span>:</th>
<td><input type='text' name='vboxISCSITarget' class='vboxText' /></td>
</tr>
<tr>
<th><span class='translate'>LUN</span>:</th>
<td><input type='text' name='vboxISCSILun' class='vboxText' value="0" /></td>
</tr>
<tr>
<th></th>
<td><label><input type='checkbox' name='vboxISCSILunEnc' class='vboxCheckbox' /> <span class='translate'>Encoded</span></label></td>
</tr>
<tr>
<th><span class='translate'>Username</span>:</th>
<td><input type='text' name='vboxISCSIUser' class='vboxText' /></td>
</tr>
<tr>
<th><span class='translate'>Password</span>:</th>
<td><input type='password' name='vboxISCSIPass' class='vboxText' /></td>
</tr>
</table>
</form>
</div>
<script type='text/javascript'>
// Translations
$('#vboxISCSI').find(".translate").html(function(i,h){return trans(h,'vboxISCSI');}).removeClass('translate');
</script>