summaryrefslogtreecommitdiffstats
path: root/src/dist/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/dist/index.html')
-rw-r--r--src/dist/index.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/dist/index.html b/src/dist/index.html
deleted file mode 100644
index f6a0294..0000000
--- a/src/dist/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!doctype html>
-<html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width" />
- <title>Cheap web cam</title>
- </head>
- <body>
- <noscript>
- This page contains web assembly and Javascript content, please enable
- Javascript in your browser.
- </noscript>
-
- <div class="content">
- <div class="controls">
- <button class="btn btn-play" title="Start video stream"></button>
- <button class="btn btn-pause" title="Pause video stream"></button>
- <button class="btn btn-shot active" title="Take photo"></button>
- <button class="btn btn-log-del" title="Clear the log"></button>
- <button class="btn btn-log-hide non-active" title="Show the log"></button>
- <button
- class="btn btn-confirm"
- title="Confirm the image, and process it"></button>
-
- <select name="" id="stream-input-select">
- <option value="">Select camera</option>
- </select>
- </div>
-
- <div class="output">
- <img
- id="photo"
- class="overlay"
- alt="The screen capture will appear in this box." />
- <canvas id="canvas" class="overlay"> </canvas>
- <video id="video" class="overlay">Video stream not available.</video>
- </div>
- </div>
-
- <pre id="console" class="active" style="display: None;">Log entries:</pre>
-
- <script src="main.js"></script>
- </body>
-</html>
-<!-- vim: ts=2 -->