Spaces:
Sleeping
Sleeping
Create index.html
Browse files- index.html +21 -0
index.html
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Interview Bot</title>
|
| 7 |
+
<link rel="stylesheet" href="static/style.css">
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<div id="video-container">
|
| 11 |
+
<video id="localVideo" autoplay muted></video>
|
| 12 |
+
<video id="remoteVideo" autoplay></video>
|
| 13 |
+
</div>
|
| 14 |
+
|
| 15 |
+
<div id="controls">
|
| 16 |
+
<button id="startInterview">Start Interview</button>
|
| 17 |
+
</div>
|
| 18 |
+
|
| 19 |
+
<script src="static/interview.js"></script>
|
| 20 |
+
</body>
|
| 21 |
+
</html>
|