23 lines
602 B
HTML
23 lines
602 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href="./style.css" type="text/css" rel="stylesheet" media="screen">
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
<script>require('./crash-reporter')</script>
|
|
<script>require('./notifications')</script>
|
|
<script>require('./drag-drop-render')</script>
|
|
|
|
<div class="notify">
|
|
<h3>Notifications</h3>
|
|
<button class="start-notify">Start</button>
|
|
<button class="stop-notify">Stop</button>
|
|
</div>
|
|
<div class="drag-n-drop">
|
|
<h3>Drag and Drop Area</h3>
|
|
<div class="file-container"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|