-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (93 loc) · 4.03 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>USSD </title>
<link rel="icon" href="fav.png" type="image/x-icon">
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/AdminLTE.min.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins -->
<link rel="stylesheet" href="css/skins/_all-skins.min.css">
<link rel="stylesheet" href="css/jquery-ui.min.css">
<link rel="stylesheet" href="css/ussd.css">
</head>
<body>
<div class="container">
<!-- Navigation Menu -->
<section class="content-header">
<h1>USSD Simulator</h1>
<ol class="breadcrumb">
<li><a href="./settings.html"><i class="fa fa-cog"></i> Settings</a></li>
<li class="active">USSD</li>
</ol>
</section>
<!-- End Navigation Menu -->
<!-- Section for ussd input entry -->
<div class="flex-container">
<div class="row">
<div class="flex-item">
<!-- Initial screen display -->
<div id="btn-start" class="ussd-start">
<a href="#" class="btn btn-primary" id="start-ussd">Start USSD</a>
</div>
<!-- End Initial screen display -->
<!-- CSS Loader -->
<div class="loader" id="loader-4">
<span></span>
<span></span>
<span></span>
</div>
<!-- End CSS Loader -->
<!-- Section for content display -->
<div class="ussd-content ussd-display">
</div>
<!-- End Section for content display -->
<!-- Section for ussd input entry -->
<div class="con-session ussd-display">
<div class="form-group">
<div class="col-md-6">
<input id="txt-input" type="text" class="form-control border-bottom ussd-input" name="ussd_text" required autofocus autocomplete="off">
</div>
</div>
<div class="form-group">
<div class="col-md-6">
<button type="button" class="btn btn-default clear-ussd-session">
Cancel
</button>
<button type="button" class="btn btn-primary" id="btn-send">
Send
</button>
</div>
</div>
</div>
<!-- End Section for ussd input entry -->
<!-- Section for ussd terminal message -->
<div class="end-session ussd-display">
<div class="form-group">
<div class="col-md-6">
<button type="button" class="btn btn-default clear-ussd-session">
Dismiss
</button>
</div>
</div>
</div>
<!-- End Section for ussd terminal message -->
</div>
</div>
</div>
</div>
<script src="js/jquery-2.2.3.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/ussd.js"></script>
</body>
</html>