<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <link rel="stylesheet" type="text/css" href="transbeam.css"/> <title>Upload Test</title> </head> <body> <div> <label> <input type="file" multiple id="file_input"/> <span class="fake_button" id="file_input_message">Select files to upload...</span> </label> </div> <button id="upload" disabled>Upload</button> <h2>Files selected:</h2> <ul id="file_list"> </ul> <div id="download_link"></div> <div id="progress"></div> <script src="upload.js"></script> </body> </html>