-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.htm
107 lines (105 loc) · 4.56 KB
/
contact.htm
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
<!DOCTYPE html>
<!--
* Copyright (C) 2012-2015 Doubango Telecom <http://www.doubango.org>
* License: BSD
* This file is part of Open Source sipML5 solution <http://www.sipml5.org>
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Contact</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="Keywords" content="doubango, VoIP, HTML5, WebRTC, RTCWeb, SIP, IMS, Video chat, VP8 " />
<meta name="Description" content="HTML5 SIP client using WebRTC framework" />
<meta name="author" content="Doubango Telecom" />
<!-- Le styles -->
<link href="./assets/css/bootstrap.css" rel="stylesheet" />
<style type="text/css">
body
{
padding-top: 102px;
padding-bottom: 40px;
}
</style>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span
class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
</a>
<img alt="sipML5" class="brand" src="./images/sipml-34x39.png" />
<div class="nav-collapse">
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="http://code.google.com/p/sipml5/source/checkout" target="_blank">Source code</a></li>
<li class="active"><a href="contact.htm">Contact</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<p>
<!-- Obfuscated using: http://womeninbusiness.about.com/gi/o.htm?zi=1/XJ&zTi=1&sdn=womeninbusiness&cdn=money&tm=24&f=10&su=p284.13.342.ip_p554.21.342.ip_&tt=2&bt=1&bts=0&zu=http%3A//www.seowebsitepromotion.com/obfuscate_email.asp -->
For non-technical questions, please <a href="mailto:info@doubango.org?subject=sipML5"
title="Send us a mail">
Send us a mail</a><br />
You can also open <a target=_blank href="http://click2dial.org/u/ZGlvcG1hbWFkb3VAZG91YmFuZ28ub3Jn">this link</a> or press on the green button on the right side to call us on our mobile (or landline) phone.
</p>
<hr />
<p>
For technical questions, please subscribe to our <a href="https://groups.google.com/group/doubango" target=_blank>developer's mailing list</a>:
</p>
<table border="0" style="background-color: #fff; padding: 5px;" cellspacing="0">
<tr>
<td>
<img src="http://groups.google.com/intl/en/images/logos/groups_logo_sm.gif" height="30"
width="140" alt="Google Groups" />
</td>
</tr>
<form action="http://groups.google.com/group/doubango/boxsubscribe">
<tr>
<td style="padding-left: 5px;">
Email:
<input type="text" name="email" />
<input type="submit" name="sub" value="Subscribe" />
</td>
</tr>
</form>
<tr>
<td>
<hr />
<p>
Doubango Telecom<br />
12 Rue Vivienne Lot 3<br />
75002 Paris<br />
FRANCE<br />
</p>
</td>
</tr>
</table>
<hr />
<footer>
<p>
© Doubango Telecom 2012-2015</p>
<i>Inspiring the future</i>
</footer>
</div>
<!-- click-to-call widget -->
<script type='text/javascript' src='http://click2dial.org/c2c-api.js'></script>
<script type='text/javascript'>
c2c.from = 'ZGlvcG1hbWFkb3VAZG91YmFuZ28ub3Jn';
c2c.text = 'call us »';
c2c.class = 'btn btn-large btn-success';
c2c.config = {
http_service_url: null,
websocket_proxy_url: null,
sip_outbound_proxy_url: null
};
c2c.init();
</script>
</body>
</html>