forked from vasanthv/hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·72 lines (66 loc) · 2.42 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta
name="viewport"
content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<meta
name="description"
content="A free, peer-to-peer, encrypted, open-source video calling for the web. No sign ups. No downloads."
/>
<meta
name="keywords"
content="group video chat, video communication, multiparty video chat, video chat, webrtc, peer to peer, p2p"
/>
<meta name="application-name" content="Tlk" />
<!-- Meta data for link fetching -->
<meta property="og:url" content="https://tlk.li" />
<meta property="og:image" content="https://tlk.li/og-image.png" />
<meta property="og:title" content="Tlk - Free group video call for the web" />
<meta
property="og:description"
content="A free, peer-to-peer, encrypted, open-source video calling for the web. No sign ups. No downloads."
/>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" href="/favicon.svg" />
<link rel="stylesheet" href="/home.css" />
<title>Tlk - Free group video call for the web</title>
<script defer src="/vue.global.prod.js"></script>
<script defer src="/home.js"></script>
<!-- ANALYTICS_SCRIPT -->
</head>
<body>
<main class="wrap">
<div id="app" class="row">
<h1 class="flex"><img src="favicon.svg" id="logo" /> Tlk</h1>
<h2>A free, peer-to-peer, open-source video calling for the web.</h2>
<h3>No sign ups. No downloads.<br />Works in all major browsers.</h3>
<div class="flex">
<div id="roomurl">
<span>tlk.li/</span><input type="text" placeholder="room-name" pattern="[a-zA-Z0-9]{8}" v-model="roomId" />
</div>
<a v-bind:href="'/'+roomId" class="button">Start</a>
</div>
<p><a href="javascript:void(0)" v-on:click="generateRandomRoomId">Generate a random room</a></p>
</div>
<div class="spacer"></div>
<div class="row">
<iframe
src="https://ghbtns.com/github-btn.html?user=vasanthv&repo=tlk&type=star&count=true&size=large"
frameborder="0"
scrolling="0"
width="170"
height="30"
title="GitHub"
></iframe>
</div>
<div class="row small light">
© tlk.li · <a href="/legal">Legal</a> ·
<a href="mailto:[email protected]" target="_blank">Contact</a>
</div>
<br /><br />
</main>
</body>
</html>