forked from libapps/libapps-mirror
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnassh_sftp_fsp_config_dialog.html
More file actions
59 lines (54 loc) · 1.69 KB
/
nassh_sftp_fsp_config_dialog.html
File metadata and controls
59 lines (54 loc) · 1.69 KB
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
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<script type='module' src='../js/nassh_sftp_fsp_config_dialog.js'></script>
<link rel='stylesheet' href='../css/nassh_styles.css'/>
<link rel='stylesheet' href='../css/nassh_sftp_fsp_config_dialog.css'/>
</head>
<body class='dialog-body'>
<table id='aligned-dialog-fields'>
<tr>
<td class='aligned-dialog-labels'>
<div id='label-mount-path' class='aligned-dialog-labels'
i18n='{"_": "MOUNT_PATH_LABEL"}'
>MOUNT PATH</div>
</td>
<td>
<input id='field-mount-path' type='text'
aria-labelledby='label-mount-path'
i18n='{"placeholder": "$id"}'>
</td>
</tr>
<tr>
<td class='aligned-dialog-labels'>
<div id='label-read-size' class='aligned-dialog-labels'
i18n='{"_": "READ_SIZE_LABEL"}'
>READ SIZE</div>
</td>
<td>
<input id='field-read-size' type='number' min='1'
aria-labelledby='label-read-size'
i18n='{"placeholder": "$id"}'>
</td>
</tr>
<tr>
<td class='aligned-dialog-labels'>
<div id='label-write-size' class='aligned-dialog-labels'
i18n='{"_": "WRITE_SIZE_LABEL"}'
>WRITE SIZE</div>
</td>
<td>
<input id='field-write-size' type='number' min='1'
aria-labelledby='label-write-size'
i18n='{"placeholder": "$id"}'>
</td>
</tr>
<tr>
<td colspan=2>
<pre id='raw-stats'>raw stats</pre>
</td>
</tr>
</table>
</body>
</html>