This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
127 lines (95 loc) · 3.33 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
RetroRTC
Copyright (c) 2013-2014 Versatica <http://www.versatica.com>
Authors:
Iñaki Baz Castillo <[email protected]>
José Luis Millán <[email protected]>
Homepage: http://retrortc.versatica.com
License: http://retrortc.versatica.com/LICENSE.txt
-->
<head>
<title>RetroRTC</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="Author" content="Iñaki Baz Castillo ([email protected]) - http://versatica.com" />
<link rel="stylesheet" href="css/style.css" type="text/css" />
<link rel="stylesheet" href="css/gh-fork-ribbon.css" type="text/css" />
<!--[if IE]>
<link rel="stylesheet" href="css/gh-fork-ribbon.ie.css" type="text/css" />
<![endif]-->
<link rel="icon" type="image/png" href="favicon.png" />
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/jssip.js" type="text/javascript"></script>
<script src="js/RetroRTC.js" type="text/javascript"></script>
<script src="js/init.js" type="text/javascript"></script>
<script>JsSIP.debug.enable('*');</script>
<style>
@font-face {
font-family: "Jose Fernandez";
src:url("/fonts/JoseFernandez.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body>
<div id="Logo"></div>
<div id="RetroRTC">
<div class="earphone"></div>
<div class="base">
<div class="wheel">
<div class="digit one"></div>
<div class="digit two"></div>
<div class="digit three"></div>
<div class="digit four"></div>
<div class="digit five"></div>
<div class="digit six"></div>
<div class="digit seven"></div>
<div class="digit eight"></div>
<div class="digit nine"></div>
<div class="digit zero"></div>
</div>
<div class="doorstop"></div>
<div class="unregister-all"></div>
</div>
<div class="shadow"></div>
<div class="table">
<div class="vase"></div>
</div>
</div><!-- #RetroRTC -->
<div id="frameContainer">
<div class="frame"></div>
<video poster="images/picture-1.png"></video>
</div>
<div id="mirrorContainer">
<div class="mirror"></div>
<video poster="images/mirror-empty.png"></video>
</div>
<div id="postit" title="other users can call you by dialing this number">
<div class="text">
<div class="myNumberIs">my number:</div>
<div class="myNumber">1452</div>
</div>
</div>
<!-- <div class="github-fork-ribbon-wrapper left-bottom">
<div class="github-fork-ribbon">
<a target="_blank" href="https://github.com/versatica/RetroRTC">Fork me on GitHub</a>
</div>
</div> -->
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(["trackPageView"]);
_paq.push(["enableLinkTracking"]);
(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://private.versatica.com/piwik/";
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "7"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Piwik Code -->
</body>
</html>