-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlobby.html
28 lines (27 loc) · 887 Bytes
/
lobby.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="stylelobby.css">
<link rel="icon" href="img/webcam_icon.ico">
<title>UNO - WebRTC</title>
</head>
<body>
<div class="container">
<h1>UNO - WebRTC</h1>
<div class="content">
<p>Para poder iniciar una videollamada, apreta el boton "siguiente"</p>
<button onclick="irAPagina()">Siguiente</button>
</div>
<div class="info">
<p>Para descargar el repositorio y ver más información, haz <a href="https://github.com/ivanbondarenco">click aquí</a></p>
</div>
</div>
<script>
function irAPagina() {
window.location.href = "index.html";
}
</script>
</body>
</html>