summaryrefslogtreecommitdiff
path: root/client-web/public/start.html
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2023-04-04 11:15:03 +0200
committermetamuffin <metamuffin@disroot.org>2023-04-04 11:15:03 +0200
commit99d1ab55dfb1714d8f574060e618dc93c94f245c (patch)
treeb01f6ccb6b4060f120a71145fbbded0131c9430e /client-web/public/start.html
parent84587df365c61297e08d00f28317b452681a4b84 (diff)
parentfe36a0640f2e36baad1f08033f09b49bdd0f1062 (diff)
downloadkeks-meet-99d1ab55dfb1714d8f574060e618dc93c94f245c.tar
keks-meet-99d1ab55dfb1714d8f574060e618dc93c94f245c.tar.bz2
keks-meet-99d1ab55dfb1714d8f574060e618dc93c94f245c.tar.zst
Merge branch 'master' of codeberg.org:metamuffin/keks-meet
Diffstat (limited to 'client-web/public/start.html')
-rw-r--r--client-web/public/start.html12
1 files changed, 7 insertions, 5 deletions
diff --git a/client-web/public/start.html b/client-web/public/start.html
index efb9f22..7a1885c 100644
--- a/client-web/public/start.html
+++ b/client-web/public/start.html
@@ -3,20 +3,22 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <meta name="description" content="A simple secure web conferencing application using webrtc">
<link rel="stylesheet" href="/assets/style/master.css" />
<title>keks-meet</title>
</head>
- <body>
+ <body class="start">
<div class="start-box">
<h1>keks-meet</h2>
- <p>A web conferencing application using webrtc</p>
+ <p class="description">A simple secure conferencing application using webrtc</p>
+ <br>
<p>
keks-meet is free software! It is licenced under the terms of
the third version of the GNU Affero General Public Licence only.
</p>
<p>
To get started, click 'Join' and share the URL with your
- partner. You can also optionally customize the url by entering a
+ partner. You can also optionally customize the URL by entering a
<b>secure/unguessable(!!!)</b> identifier below.
</p>
<noscript>
@@ -28,8 +30,8 @@
const room_input = document.createElement("input");
room_input.type = "text";
room_input.id = "room-id-input";
- room_input.placeholder = "Room ID";
- room_input.ariaLabel = "Room ID"
+ room_input.placeholder = "Room Secret";
+ room_input.ariaLabel = "Room Secret"
const submit = document.createElement("input");
submit.type = "button";