diff options
| author | MetaMuffin <metamuffin@yandex.com> | 2021-08-02 10:34:36 +0200 |
|---|---|---|
| committer | MetaMuffin <metamuffin@yandex.com> | 2021-08-02 10:34:36 +0200 |
| commit | 6d4a9c797edf2bbb75cea6afef109cb457c52641 (patch) | |
| tree | 1b2e585b9349184d7e6657211d5c164145bd8210 /public/index.html | |
| download | keks-meet-6d4a9c797edf2bbb75cea6afef109cb457c52641.tar keks-meet-6d4a9c797edf2bbb75cea6afef109cb457c52641.tar.bz2 keks-meet-6d4a9c797edf2bbb75cea6afef109cb457c52641.tar.zst | |
initial commit
Diffstat (limited to 'public/index.html')
| -rw-r--r-- | public/index.html | 28 |
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> |