-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfull_template.html
77 lines (63 loc) · 2 KB
/
full_template.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
<!DOCTYPE html>
<!--
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree.
-->
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="AppRTC: Room full">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
<meta itemprop="description" content="AppRTC: Room full">
<meta itemprop="image" content="/images/webrtc-icon-192x192.png">
<meta itemprop="name" content="AppRTC: Room full">
<meta name="mobile-web-app-capable" content="yes">
<meta id="theme-color" name="theme-color" content="#1e1e1e">
<base target="_blank">
<title>AppRTC: Room full</title>
<link rel="icon" sizes="192x192" href="/images/webrtc-icon-192x192.png">
<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="{{ room_link }}">
<style>
body {
font-family: "Open Sans";
font-weight: 100;
padding: 25% 0 0 0;
}
button {
display: block;
font-size: 1.5em;
font-family: sans-serif;
margin: 0 auto;
padding: .5em .5em .3em .5em;
width: 12em;
}
div {
color: white;
font-size: 2em;
margin: 0 0 2em 0;
text-align: center;
}
</style>
</head>
<body>
<div>Sorry, this room is full.</div>
<button>OPEN A NEW ROOM</button>
<script>
document.querySelector("button").onclick = function() {
location.href = location.origin;
};
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-48530561-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>