-
Notifications
You must be signed in to change notification settings - Fork 0
/
sms-unicode-chars-cost-calc.html
67 lines (65 loc) · 2.1 KB
/
sms-unicode-chars-cost-calc.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
<!DOCTYPE html>
<html lang=en>
<head>
<title>SMS Unicode Characters Cost Calculator</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="script.js" defer></script>
</head>
<body>
<div class="container">
<div class="mb-3">
<label for="mobile_numbers" id="mobile_numbers_label" class="form-label">Mobile Numbers</label>
<input type="text" id="mobile_numbers" class="form-control form-control-lg">
<div id="mobile_numbers_desc" class="form-text">Comma-separated list.</div>
</div>
<div class="mb-3">
<label for="sms_text" id="sms_text_label" class="form-label">Message</label>
<textarea id="sms_text" rows="5" class="form-control form-control-lg"></textarea>
</div>
<table class="table table-bordered table-striped table-responsive">
<thead>
<tr>
<th>Characters</th>
<th>Message Part Length</th>
<th>Message Parts</th>
<th>Recipients</th>
<th>Cost</th>
</tr>
</thead>
<tbody>
<tr>
<td id="sms_chars">0</td>
<td id="sms_part_len">160</td>
<td id="sms_parts">0</td>
<td id="sms_recipients">0</td>
<td id="sms_cost">0 SAR</td>
</tr>
</tbody>
</table>
<table class="table table-bordered table-striped table-responsive">
<thead>
<tr>
<th></th>
<th>Regular SMS</th>
<th>Multipart SMS</th>
</tr>
</thead>
<tbody>
<tr>
<td>7-bit</td>
<td>160 chars</td>
<td>153 chars</td>
</tr>
<tr>
<td>Unicode</td>
<td>70 chars</td>
<td>67 chars</td>
</tr>
</tbody>
</table>
</div>
<footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
</footer>
</body>
</html>