Rev 2003 | Details | Compare with Previous | Last modification | View Log
Rev | Author | Line No. | Line |
---|---|---|---|
65 | DimkaM | 1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
2 | <HTML> |
||
3 | |||
2003 | kulich | 4 | <HEAD> |
5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
||
6 | <meta http-equiv="Cache-Control" content="no-cache"> |
||
2320 | dimkam | 7 | <meta name="viewport" content="width=device-width,minimum-scale=1.0"> |
2003 | kulich | 8 | <title>ZX-filemanager</title> |
9 | <link rel="icon" type="image/ico" href="favicon.ico"> |
||
10 | <style> |
||
2320 | dimkam | 11 | body{font-family:lucida console;} |
2003 | kulich | 12 | a.nubex { |
13 | color: #fff; |
||
14 | border-radius: 2px; |
||
15 | user-select: none; |
||
16 | text-decoration: none; |
||
17 | outline: none; |
||
18 | background-color: #fa8e47; |
||
19 | padding: 3px; |
||
20 | } |
||
21 | |||
22 | a.nubex:active { |
||
23 | background-color: #ee6206; |
||
24 | } |
||
25 | |||
26 | a.nubex:hover { |
||
27 | background-color: #f97f2e; |
||
28 | } |
||
29 | |||
2320 | dimkam | 30 | #divdir { |
2003 | kulich | 31 | border: 2px dashed #ccc; |
32 | border-radius: 20px; |
||
33 | font-family: sans-serif; |
||
34 | padding: 20px; |
||
35 | text-align: left |
||
36 | } |
||
37 | </style> |
||
38 | |||
39 | </HEAD> |
||
40 | |||
41 | <BODY> |
||
42 | <DIV id="log"></DIV> |
||
43 | <TABLE width="100%"> |
||
44 | <col width="50%"> |
||
45 | <col width="50%"> |
||
46 | <tr> |
||
47 | <td> |
||
48 | <input type="text" id="dirName"> |
||
49 | <a class="nubex" href="javascript:mkdir()">MakeDir</a> |
||
50 | </td> |
||
2320 | dimkam | 51 | <td style="text-align:right"><a class="nubex" href="javascript:myGet('?x=1','')">stop daemon</a> |
2003 | kulich | 52 | </tr> |
53 | </TABLE> |
||
54 | <br><br> |
||
55 | <DIV> |
||
56 | <input type="file" id="fileToUp" style="display:none" multiple> |
||
57 | <a href="javascript:if(window.fcnt<=0)document.getElementById('fileToUp').click()" class="nubex" |
||
58 | id="btnUpload">upload</a> |
||
59 | </DIV> |
||
60 | <DIV id="divlog"></DIV> |
||
61 | <DIV> |
||
62 | <input type="file" id="fileToUp" style="display:none" multiple> |
||
63 | <a href="javascript:if(window.fcnt<=0)document.getElementById('fileToUp').click()" class="nubex" |
||
64 | id="btnUpload">upload</a> |
||
65 | </DIV> |
||
66 | <script src="my.js" type="text/javascript"></script> |
||
67 | </BODY> |
||
68 | |||
65 | DimkaM | 69 | </HTML> |