aboutsummaryrefslogtreecommitdiff
path: root/public/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'public/index.html')
-rw-r--r--public/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/public/index.html b/public/index.html
new file mode 100644
index 0000000..92adc49
--- /dev/null
+++ b/public/index.html
@@ -0,0 +1,28 @@
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+
+ <script src="/scripts/bundle.js"></script>
+ <link rel="stylesheet" href="/static/css/master.css" />
+
+ <title>webrtc test</title>
+ <style>
+ * {
+ margin: 0px;
+ padding: 0px;
+ }
+ </style>
+ </head>
+
+ <body>
+ <form action="/" method="get">
+ <input type="text" name="offer" placeholder="offer id" />
+ <input type="submit" value="offer" />
+ </form>
+ <form action="/" method="get">
+ <input type="text" name="answer" placeholder="answer id" />
+ <input type="submit" value="answer" />
+ </form>
+ </body>
+</html>