36 lines
		
	
	
		
			888 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			888 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <link href="./style.css" type="text/css" rel="stylesheet" media="screen">
 | 
						|
    <meta charset="UTF-8">
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <div class="notify">
 | 
						|
      <h3>Notifications</h3>
 | 
						|
      <button class="queue">Queue</button>
 | 
						|
      <button class="clear">Clear Queue</button>
 | 
						|
    </div>
 | 
						|
    <script>require("./notifications")</script>
 | 
						|
 | 
						|
    <div class="drag-n-drop">
 | 
						|
      <h3>Drag and Drop Area</h3>
 | 
						|
      <div class="file-container"></div>
 | 
						|
    </div>
 | 
						|
    <script>require("./drag-drop-render")</script>
 | 
						|
 | 
						|
    <div>
 | 
						|
      <h3>Auto-Start</h3>
 | 
						|
      <label>
 | 
						|
        <input type="checkbox" class="auto-start"/>
 | 
						|
        Start Electron Demo on startup
 | 
						|
      </label>
 | 
						|
    </div>
 | 
						|
    <script>require("./startup-render")</script>
 | 
						|
 | 
						|
    <div>
 | 
						|
      <button class="crasher">Crash Program</button>
 | 
						|
    </div>
 | 
						|
    <script>require("./crash-reporter")</script>
 | 
						|
  </body>
 | 
						|
</html>
 |