-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (39 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="assets/css/rabbit.phone-dev.css">
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap-3.3.5.min.css">
</head>
<body>
<div class="row">
</div>
<div class="row">
<div class="col-lg-3"></div>
<div class="col-lg-6">
<div class="row">
<div class="panel panel-default">
<div class="panel-heading">Click to Call</div>
<div class="panel-body">
<p>Simple version of webphone, without showing customer number.</p>
<button class="btn btn-success">Call</button>
</div>
</div>
</div>
<div class="row">
<div class="panel panel-default">
<div class="panel-heading">Dial Pad</div>
<div class="panel-body">
<p>Simple phone with a dial pad</p>
<button class="btn btn-success">Show Dial Pad</button>
</div>
</div>
</div>
</div>
<div class="col-lg-3"></div>
</div>
<script type="text/javascript" src="assets/js/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="assets/js/phone.rabbit-dev.js"></script>
</body>
</html>