1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Sendd</title>
- <link rel='stylesheet' href='/stylesheets/style.css' />
- <script src="http://cdn.peerjs.com/0.3/peer.js"></script>
- <script type="text/javascript" src="/javascripts/index.js"></script>
- </head>
- <body>
- <h1>Sendd</h1>
- <p>Welcome to Sendd, a simple, direct file sender.</p>
- <h3>Receive a file</h3>
- <table border="1" width="100%" id="file_table">
- <thead>
- <tr>
- <td colspan="4">Files sent to you:</td>
- </tr>
- </thead>
- <tfoot>
- <tr>
- <p></p>
- <td colspan="4">My ID: <strong id="my_id"></strong></td>
- </tr>
- </tfoot>
- <tbody>
- <tr id="empty_row">
- <td colspan=4><i>No Files...</i></td>
- </tr>
- <tr>
- </tr>
- </tbody>
- </table>
- <h3>Send a file</h3>
- <input type="file" id="file_to_send"><br/><br/>
- <label>Destination ID (ask your reciever to send it to you):</label><br/>
- <input type="text" id="dest_id"></br></br>
- <button type="button" onclick="send();">Send</button>
- </body>
- </html>
|