-
Notifications
You must be signed in to change notification settings - Fork 3
/
popup.html
64 lines (64 loc) · 2.63 KB
/
popup.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
<html>
<head>
<link type="text/css" rel="stylesheet" href="https://d1fnpdk9svbocx.cloudfront.net/libs/bootstrap-hoiio/css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="https://d1fnpdk9svbocx.cloudfront.net/libs/bootstrap-hoiio/css/bootstrap-responsive.min.css">
<link type="text/css" rel="stylesheet" href="css/popup.css"
</head>
<div class="contaner">
<div class="row">
<div class="form-horizontal">
<div class="control-group">
<label class="control-label" for="inputNumber">Number: </label>
<div class="controls">
<input type="text" id="inputNumber" placeholder="+16501234567" style="min-width:220px">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputMsg">Message: </label>
<div class="controls">
<textarea type="text" id="inputMsg" style="min-width:220px" placeholder="Hey! Call me back, please?" rows="5"></textarea>
</div>
</div>
<div class="control-group hide" id="languageDiv">
<label class="control-label" for="inputLanguage">Language:</label>
<select id="inputLanguage" >
<option value="en">English</option>
<option value="zh">Chinese</option>
<option value="zh-HK">Cantonese</option>
<option value="ja">Japanese</option>
<option value="ko">Korean</option>
</select>
</div>
</div>
</div>
<div class="row">
<input type="checkbox" id="enable_voice_msg" style="margin-right: 15px;margin-bottom: 5px;">
<label class="control-label" for="enable_voice_msg" style="display:inline">Voice Message</label>
</div>
<div id="enable_send_sms_if_not_answer_row" class="row hide">
<input type="checkbox" id="enable_send_sms_if_not_answer" style="margin-right: 15px;margin-bottom: 5px;">
<label class="control-label" for="enable_send_sms_if_not_answer" style="display:inline">Send SMS if unanswered</label>
</div>
<br/>
<div class="row">
<div style="float:right">
<button class="btn btn-primary" type="button" id="sendBtn" style="height:30px;width:60px">
<div id="btnSendLabel">Send</div>
<img id="btnSendLoading" src="ajax-loader.gif" class="hide"/>
</button>
<button class="btn" type="button" id="optionBtn" >Settings</button>
</div>
</div>
<br/>
<div class="row">
<div id="status" class="hide">
</div>
<button type="button" class="btn btn-link hide" id="sendSMSMsg" style="padding-left:0px">Send SMS Message</button>
</div>
<br/>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="validation.js"></script>
<script src="sendmessage.js"></script>
<script src="popup.js"></script>
<html>