diff options
| author | metamuffin <metamuffin@disroot.org> | 2022-09-09 12:45:37 +0200 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2022-09-09 12:45:37 +0200 |
| commit | e590ea788aefe0714bb9ce24976303566a648d42 (patch) | |
| tree | d6b3d827512af388fe0ea4f2ac1c2f1fc983178a /client-web/public/app.html | |
| parent | b25bbae82f9bfaf6f37dfb16e07708060dd3df55 (diff) | |
| download | keks-meet-e590ea788aefe0714bb9ce24976303566a648d42.tar keks-meet-e590ea788aefe0714bb9ce24976303566a648d42.tar.bz2 keks-meet-e590ea788aefe0714bb9ce24976303566a648d42.tar.zst | |
reworked websocket stuff with encryption and new spec
Diffstat (limited to 'client-web/public/app.html')
| -rw-r--r-- | client-web/public/app.html | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/client-web/public/app.html b/client-web/public/app.html index 493796f..693e9a2 100644 --- a/client-web/public/app.html +++ b/client-web/public/app.html @@ -1,20 +1,24 @@ <!DOCTYPE html> <html lang="en"> - <head> - <meta charset="UTF-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <script defer async type="module" src="/_assets/bundle.js"></script> - <link rel="stylesheet" href="/_assets/style/master.css" /> + <script defer async type="module" src="/assets/bundle.js"></script> + <link rel="stylesheet" href="/assets/style/master.css" /> - <title>keks-meet</title> - </head> + <title>keks-meet</title> + </head> - <body> - <p> - keks-meet needs evil javascript to be enabled. Don't be afraid though, all - the code is free (AGPL-3.0-only)! Look at it on - <a href="https://codeberg.org/metamuffin/keks-meet">codeberg</a> - </p> - </body> + <body> + <p> + keks-meet needs evil javascript to be enabled. Don't be afraid + though, all the code is free (AGPL-3.0-only)! Look at it on + <a href="https://codeberg.org/metamuffin/keks-meet">codeberg</a> + </p> + <p> + If you have JS enabled, check the browser console to see if + something else failed + </p> + </body> </html> |