-
Notifications
You must be signed in to change notification settings - Fork 2
/
view_manager.php
107 lines (86 loc) · 4.83 KB
/
view_manager.php
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
<?php
include 'header.php';
?>
<?php
include 'sidebar.php';
?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>View Manager</h1>
<ol class="breadcrumb">
<li><a href="index.php"><i class="fa fa-home"></i> Home</a></li>
<li class="active"><i class="fa fa-envelope-o"></i> SMPP Inbox</li>
<li class="active"><i class="fa fa-table"></i> View Manager</li>
</ol>
</section>
<!-- Main content -->
<section class="content container-fluid">
<div class="row">
<div class="col-md-12">
<div class="chart-box">
<h4>View Manager</h4>
<!-- <div id="example_filter" class="dataTables_filter pull-right">
<input class="form-control" id="placeholderInput" placeholder="Search" type="email">
</div> -->
<div class = "table-responsive">
<table id="example1" class="table table-responsive table-bordered">
<thead>
<tr>
<th class="sortable">Sr No</th>
<th class="sortable">User Id</th>
<th class="sortable">Manager Name</th>
<th class="sortable">Designation</th>
<th class="sortable">Creation Date</th>
<th class="sortable">Action</th>
</tr>
</thead>
<tr>
<td class="text-truncate"></td>
<td class="text-truncate"><a href="#">test</a></td>
<td class="text-truncate">Florence Douglas</td>
<td class="text-truncate"><span class="lable-tag tag-success">Paid</span></td>
<td class="text-truncate"><span class="lable-tag tag-success">Paid</span></td>
<td class="action-col" scope="col" id="0">
<label>
<form action="editsmppresuser" method="post" id="myform" name="editfrm1">
<input type="hidden" name="checkStatus" value="Active">
<a href="edit_manager.php" onclick="document.editfrm1.submit(); return false;" class="btn btn-default btn-icon btn-xs tip" title="" rel="tooltip" data-toggle="tooltip" data-placement="top" data-original-title="Edit Smpp User"><i class="fa fa-edit text-info"></i></a>
</form>
</label>
<label>
<a href="#confrmdel-account" class="btn btn-default btn-icon btn-xs tip" title="" rel="tooltip" data-toggle="modal" data-placement="top" data-original-title="Delete" onclick="delAccountManager('222213','Arun','1');"><i class="fa fa-trash-o text-danger"></i></a><div class="tooltip fade top" role="tooltip" id="tooltip45086" style="top: 52px; left: 950.875px; display: block;"><div class="tooltip-arrow" style="left: 50%;"></div><div class="tooltip-inner">Send Account Details</div></div>
</label>
</td>
</tr>
<tr>
<td class="text-truncate">test</td>
<td class="text-truncate"><a href="#">test</a></td>
<td class="text-truncate">Dr. Douglas</td>
<td class="text-truncate"><span class="lable-tag tag-unpaid">Overdue</span></td>
<td class="text-truncate"><span class="lable-tag tag-success">Paid</span></td>
<td class="action-col" scope="col" id="0">
<label>
<form action="editsmppresuser" method="post" id="myform" name="editfrm1">
<input type="hidden" name="checkStatus" value="Active">
<a href="edit_manager.php" onclick="document.editfrm1.submit(); return false;" class="btn btn-default btn-icon btn-xs tip" title="" rel="tooltip" data-toggle="tooltip" data-placement="top" data-original-title="Edit Smpp User"><i class="fa fa-edit text-info"></i></a>
</form>
</label>
<label>
<a href="#confrmdel-account" class="btn btn-default btn-icon btn-xs tip" title="" rel="tooltip" data-toggle="modal" data-placement="top" data-original-title="Delete" onclick="delAccountManager('222213','Arun','1');"><i class="fa fa-trash-o text-danger"></i></a><div class="tooltip fade top" role="tooltip" id="tooltip45086" style="top: 52px; left: 950.875px; display: block;"><div class="tooltip-arrow" style="left: 50%;"></div><div class="tooltip-inner">Send Account Details</div></div>
</label>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- content -->
</div>
<!-- content-wrapper -->
<?php
include 'footer.php';
?>