-
Notifications
You must be signed in to change notification settings - Fork 11
/
tabs.html
123 lines (119 loc) · 3.96 KB
/
tabs.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
<!--
Copyright 2016, SIPLABS LLC.
Licensed under the Apache License,Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "ASIS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body style="width: 280px">
<div id="signout_link_tabs">
<div id="name"></div>
<div id="signout">
<a href="#" tabindex="-1" id="signout_text">sign out</a>
</div>
</div>
<div id="dialer">
<div class="ui-widget">
<input class="input" id="destination" placeholder="Phone number" maxlength="24" />
</div>
<div class="numbers">
<button class="btn_added" id="btn1">1</button>
<button class="btn_added" id="btn2">2</button>
<button class="btn_added" id="btn3">3</button>
<button class="btn_added" id="btn4">4</button>
<button class="btn_added" id="btn5">5</button>
<button class="btn_added" id="btn6">6</button>
<button class="btn_added" id="btn7">7</button>
<button class="btn_added" id="btn8">8</button>
<button class="btn_added" id="btn9">9</button>
<button class="btn_added" id="btn10">+</button>
<button class="btn_added" id="btn11">0</button>
<button class="btn_added" id="btn12"><div class="btn-call"> </div></button>
</div>
<div class="ui-widget">
<table id="calls">
</table>
</div>
</div>
<div id="tabs">
<ul>
<li>
<a href="#messages">
<span><img src="images/messages.png" width=32 height=32 id="msg_tab" title="Messages"></span>
</a>
</li>
<li>
<a href="#phonebook">
<span><img src="images/phonebook.png" width=32 height=32 id="phonebook_tab" title="Phone book"></span>
</a>
</li>
<li>
<a href="#history">
<span><img src="images/history.png" width=32 height=32 id="history_tab" title="History"></span>
</a>
</li>
<li>
<a href="#fax">
<span><img src="images/faxbox.png" width=32 height=32 id="fax_tab" title="Fax"></span>
</a>
</li>
<!-- <li> -->
<!-- <a href="#conference"> -->
<!-- <span><img src="images/conference.png" width=32 height=32 id="conf_tab" title="Conference"></span> -->
<!-- </a> -->
<!-- </li> -->
</ul>
<div id="history">
<div id="calllogs">
<table id="calllogentries" class="tabled_tab">
</table>
</div>
</div>
<div id="phonebook">
<table id="phonebookentries" class="tabled_tab">
</table>
</div>
<div id="messages">
<div id="msgtable" class="mes">
</div>
</div>
<div id="fax">
<table id="faxentries" class="tabled_tab">
<tr>
<td colspan=3>
<button>Send fax</button>
</td>
</tr>
</table>
</div>
<!-- <div id="conference"> -->
<!-- <table id="conferenceentries" class="tabled_tab"> -->
<!-- <\!-- Coming soon -\-> -->
<!-- </table> -->
<!-- </div> -->
</div>
<div id="toolbar">
<img id="cfabutton" src="images/cf_disabled.png" title="Call Forwarding Always" class="tray_icons" />
<img id="dndbutton" src="images/dnd_normal.png" title="Do Not Disturb" class="tray_icons" />
<img id="options" src="images/options.png" title="Options" class="tray_icons" />
<img id="about" src="images/about.png" title="About" class="tray_icons" />
<div id="error_msg"> </div>
</div>
</body>
<script src="jquery.js"></script>
<script src="jquery-ui.js"></script>
<script type="text/javascript" src="utils.js"></script>
<script src="dotabs.js"></script>
</html>