-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (66 loc) · 3.24 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
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="Meeting project by Koyji">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Koyji Meet</title>
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/skeleton.css" />
<link rel="stylesheet" href="css/style.css" />
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
<!-- SCRIPT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/axios.min.js"></script>
<script src="https://cdn.stringee.com/sdk/web/2.2.1/stringee-web-sdk.min.js"></script>
</head>
<body>
<div class="topnav">
<a class="active" href="/index.html"><strong>Koy</strong>ji Lab</a>
<a href="https://github.com/yunnam21/Koyji-Meet">Github</a>
<a href="https://www.facebook.com/namu.nemu18/">Liên Hệ</a>
</div>
<div class="container" v-cloak id="app" style="margin-top: 10%">
<h1 class="title">
<strong>Koyji</strong>Meet
</h1>
<p>Koyji - Video Call đơn giản, trực quan, bảo mật và hoàn toàn miễn phí.</p>
<div>
<button class="button-primary" v-if="!room" @click="createRoom">
TẠO CUỘC HỌP
</button>
<button class="button" v-if="!room" @click="joinWithId">
THAM GIA CUỘC HỌP
</button>
<button class="button" v-if="room" @click="publish(true)">
CHIA SẺ MÀN HÌNH
</button>
</div>
<div v-if="roomId" class="info">
<p>
<strong>ID của bạn là:</strong>
<code><strong>{{roomId}}</strong><br/></code>
<p><strong>Link tham gia: </strong><a v-bind:href="roomUrl" target="_blank">{{roomUrl}}</a>.</p>
</p>
</div>
</div>
<div class="container">
<div id="videos"></div>
</div>
</body>
<script src="script/api.js"></script>
<script src="script/script.js"></script>
</html>