aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/css/master.css0
-rw-r--r--public/favicon.icobin0 -> 318 bytes
-rw-r--r--public/index.html28
-rwxr-xr-xpublic/mkassets.sh7
4 files changed, 35 insertions, 0 deletions
diff --git a/public/css/master.css b/public/css/master.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/public/css/master.css
diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100644
index 0000000..8426ab0
--- /dev/null
+++ b/public/favicon.ico
Binary files differ
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>
diff --git a/public/mkassets.sh b/public/mkassets.sh
new file mode 100755
index 0000000..2e89d3b
--- /dev/null
+++ b/public/mkassets.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+pushd .
+cd $(dirname $0)
+convert -size 256x256 -define gradient:radii=64,64 radial-gradient:white-black assets/light.png
+convert -size 256x256 xc:white -fill black -stroke black -draw "rectangle 64,64 192,192" -rotate 45 -blur 40x40 assets/void.png
+
+popd \ No newline at end of file