]> git.wh0rd.org - chrome-ext/crftp.git/blob - html/main.html
init
[chrome-ext/crftp.git] / html / main.html
1 <!-- Written by Mike Frysinger <vapier@gmail.com>. Released into the public domain. Suck it. -->
2 <!doctype html>
3 <html>
4
5 <head>
6 <title>CrFTP</title>
7 <script type="text/javascript" src="../pnacl/crftp.js"></script>
8 <link rel="stylesheet" type="text/css" href="../pnacl/crftp.css">
9 </head>
10
11 <body>
12
13 Status: <code id='status'>Initializing JS</code>
14 <div id='UI'>
15 ftp://
16 <input id='user' type='text' value='anonymous'>
17 :
18 <input id='pass' type='text' value='luser@crftp'>
19 @
20 <input id='host' type='text' value='192.168.0.2'>
21 :
22 <input id='port' type='number' value='21' min='1' max='65535'>
23 <br>
24 <button id='connect'>Connect</button>
25 command: <input id='cmd' type='text' value='dir null'>
26 <br>
27 file transfer:
28 <button id='upload'>Up</button>
29 <button id='download'>Down</button>
30 <input id='files' type='file'>
31 </div>
32
33 <div id='log'></div>
34 <div id='listener'></div>
35
36 </body>
37 </html>