aboutsummaryrefslogtreecommitdiff
path: root/client-web/public
diff options
context:
space:
mode:
Diffstat (limited to 'client-web/public')
-rw-r--r--client-web/public/app.html2
-rw-r--r--client-web/public/start.html9
2 files changed, 6 insertions, 5 deletions
diff --git a/client-web/public/app.html b/client-web/public/app.html
index c2414ce..42c5052 100644
--- a/client-web/public/app.html
+++ b/client-web/public/app.html
@@ -8,7 +8,7 @@
content="A simple secure web conferencing application using webrtc"
/>
<script type="module" src="/assets/bundle.js"></script>
- <link rel="stylesheet" href="/style.css" />
+ <link rel="stylesheet" href="/assets/bundle.css" />
<title>keks-meet</title>
</head>
<body>
diff --git a/client-web/public/start.html b/client-web/public/start.html
index 4c90934..67cad7f 100644
--- a/client-web/public/start.html
+++ b/client-web/public/start.html
@@ -7,7 +7,7 @@
name="description"
content="A simple secure web conferencing application using webrtc"
/>
- <link rel="stylesheet" href="/style.css" />
+ <link rel="stylesheet" href="/assets/bundle.css" />
<title>keks-meet</title>
</head>
<body class="start">
@@ -18,8 +18,9 @@
</p>
<br />
<p class="instructions">
- To start a meeting, click 'Create room' and share the URL with all
- participants. You can also optionally set the room name below.
+ To start a meeting, click 'Create room' and share the URL with
+ all participants. You can also optionally set the room name
+ below.
</p>
<p class="instructions">
keks-meet is free software! It is licenced under the terms of
@@ -81,7 +82,7 @@
],
];
return frags
- .map(f => f[Math.floor(Math.random() * f.length)])
+ .map((f) => f[Math.floor(Math.random() * f.length)])
.join("")
.trim();
}