24 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			680 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!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>
 | 
						|
      <span class="fake_button" id="file_input_message">Select files to upload...</span>
 | 
						|
      <input type="file" multiple id="file_input"/>
 | 
						|
    </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>
 |