[504] | 1 | <?php
|
---|
| 2 | $base_url = base_url();
|
---|
| 3 | $this->load->view('layout/frontend/header', array('base_url' => $base_url, '$username' => @$username));
|
---|
| 4 | $this->load->view('layout/frontend/sidebar', array('base_url' => $base_url));
|
---|
| 5 | ?>
|
---|
| 6 | <div class="main-content">
|
---|
| 7 |
|
---|
| 8 | <div class="page-content">
|
---|
| 9 | <div class="page-header">
|
---|
| 10 | <h1>
|
---|
| 11 | ThÎng tin cá nhân
|
---|
| 12 | <small>
|
---|
| 13 | <i class="icon-double-angle-right"></i>
|
---|
| 14 | <?php echo @$username; ?>
|
---|
| 15 | </small>
|
---|
| 16 | </h1>
|
---|
| 17 | </div><!-- /.page-header -->
|
---|
| 18 |
|
---|
| 19 | <div class="row">
|
---|
| 20 | <div class="col-xs-12">
|
---|
| 21 | <!-- PAGE CONTENT BEGINS -->
|
---|
| 22 | <div class="user-profile row" id="user-profile-3">
|
---|
| 23 | <div class="col-sm-offset-1 col-sm-10">
|
---|
| 24 |
|
---|
| 25 | <div class="tabbable">
|
---|
| 26 | <ul class="nav nav-tabs padding-16">
|
---|
[508] | 27 | <li class="active" >
|
---|
| 28 | <a id="edit-basic-tab" href="#edit-basic" data-toggle="tab">
|
---|
[504] | 29 | <i class="green icon-edit bigger-125"></i>
|
---|
| 30 | ThÎng tin cá nhân
|
---|
| 31 | </a>
|
---|
| 32 | </li>
|
---|
| 33 |
|
---|
[508] | 34 | <li >
|
---|
| 35 | <a id="edit-password-tab" href="#edit-password" data-toggle="tab">
|
---|
[504] | 36 | <i class="blue icon-key bigger-125"></i>
|
---|
| 37 | Äá»i máºt khẩu
|
---|
| 38 | </a>
|
---|
| 39 | </li>
|
---|
| 40 |
|
---|
[508] | 41 | <li >
|
---|
| 42 | <a id="account-info-tab" href="#account-info" data-toggle="tab">
|
---|
[504] | 43 | <img src="<?php echo $base_url; ?>assets/img/payment.png" width="16" class="img-responsive pull-left">
|
---|
| 44 | ThÎng tin tà i khoản
|
---|
| 45 | </a>
|
---|
| 46 | </li>
|
---|
[508] | 47 | <li >
|
---|
| 48 | <a id="services-register-tab" href="#services-register" data-toggle="tab">
|
---|
[504] | 49 | <i class="blue icon-cog bigger-125"></i>
|
---|
| 50 | ÄÄng kÜ dá»ch vụ
|
---|
| 51 | </a>
|
---|
| 52 | </li>
|
---|
| 53 | </ul>
|
---|
| 54 |
|
---|
| 55 | <div class="tab-content profile-edit-tab-content">
|
---|
| 56 | <div class="tab-pane in active" id="edit-basic">
|
---|
| 57 | <form id="frm1" role="form" class="form-horizontal">
|
---|
| 58 | <h4 class="header blue bolder smaller">ThÎng tin cá nhân</h4>
|
---|
| 59 |
|
---|
| 60 | <div class="row">
|
---|
| 61 |
|
---|
| 62 | <div class="vspace-xs"></div>
|
---|
| 63 |
|
---|
| 64 | <div class="col-sm-9">
|
---|
| 65 | <div class="form-group">
|
---|
| 66 | <label for="form-field-username" class="col-sm-4 control-label no-padding-right">Sá» Äiá»n thoại</label>
|
---|
| 67 |
|
---|
| 68 | <div class="col-sm-8">
|
---|
[519] | 69 | <input type="text" name="username" value="<?php echo @$username; ?>" placeholder="Sá» Äiá»n thoại" id="form-field-username" class="col-xs-12 col-sm-10" disabled>
|
---|
[504] | 70 | </div>
|
---|
| 71 | </div>
|
---|
| 72 |
|
---|
| 73 | <div class="space-4"></div>
|
---|
| 74 |
|
---|
| 75 | <div class="form-group">
|
---|
| 76 | <label for="form-field-first" class="col-sm-4 control-label no-padding-right">HỠvà tên</label>
|
---|
| 77 | <label class="block clearfix has-error">
|
---|
| 78 |
|
---|
| 79 | <div class="col-sm-8">
|
---|
[706] | 80 | <input type="text" name="fullname" value="<?php echo @$fullname; ?>" placeholder="HỠvà tên" id="form-field-first" class="col-xs-12 col-sm-10" <?php if ($can_edit == 0) echo 'disabled'; ?>>
|
---|
[504] | 81 |
|
---|
| 82 | </div>
|
---|
| 83 | <small><div class="col-sm-8 help-block" id="fullname_err"> </div></small>
|
---|
| 84 | </label>
|
---|
| 85 | </div>
|
---|
| 86 |
|
---|
| 87 | <div class="space-4"></div>
|
---|
| 88 |
|
---|
| 89 | <div class="form-group">
|
---|
| 90 | <label for="form-field-username" class="col-sm-4 control-label no-padding-right">ÄÆ¡n vá»</label>
|
---|
| 91 |
|
---|
| 92 | <div class="col-sm-8">
|
---|
| 93 | <input type="text" name="school" value="<?php echo @$school; ?>" placeholder="ÄÆ¡n vá»" id="form-field-username" class="col-xs-12 col-sm-10">
|
---|
| 94 | </div>
|
---|
| 95 | </div>
|
---|
| 96 |
|
---|
| 97 | <div class="space-4"></div>
|
---|
| 98 |
|
---|
| 99 | <div class="form-group">
|
---|
| 100 | <label for="form-field-username" class="col-sm-4 control-label no-padding-right">Tá»nh / Thà nh phá»</label>
|
---|
| 101 |
|
---|
| 102 | <div class="col-sm-8">
|
---|
[701] | 103 | <!--input type="text" name="province" value="<?php echo @$province; ?>" placeholder="Tá»nh / Thà nh phá»" id="form-field-province" class="col-xs-12 col-sm-10"-->
|
---|
| 104 | <select name="province" id="form-field-province" class="col-xs-12 col-sm-10">
|
---|
[723] | 105 | <option></option>
|
---|
[753] | 106 | <?php foreach ($provinces as $key=>$pro):?>
|
---|
| 107 | <option value="<?php echo $key;?>" <?php if($province==$key) echo "selected"; ?>><?php echo $pro; ?></option>
|
---|
[701] | 108 | <?php endforeach;?>
|
---|
| 109 | </select>
|
---|
[504] | 110 | </div>
|
---|
| 111 | </div>
|
---|
[706] | 112 | <!--div class="form-group">
|
---|
[690] | 113 | <label for="form-field-username" class="col-sm-4 control-label no-padding-right">Quáºn / Huyá»n</label>
|
---|
| 114 |
|
---|
| 115 | <div class="col-sm-8">
|
---|
| 116 | <input type="text" name="district" value="<?php echo @$district; ?>" placeholder="Quáºn / Huyá»n" id="form-field-district" class="col-xs-12 col-sm-10">
|
---|
| 117 | </div>
|
---|
[706] | 118 | </div-->
|
---|
[504] | 119 |
|
---|
| 120 | </div>
|
---|
| 121 | <div class="col-sm-3">
|
---|
[707] | 122 | <!--<h4><small><a href="#" data-toggle="modal" data-target="#changeProfile"><i>Äá»i sá» Äiá»n thoại</i></a></small></h4>-->
|
---|
[504] | 123 | </div>
|
---|
| 124 | </div>
|
---|
| 125 | <div class="space-4"></div>
|
---|
| 126 |
|
---|
| 127 | <div class="clearfix form-actions">
|
---|
| 128 | <div class="col-md-offset-3 col-md-9">
|
---|
| 129 | <button type="button" onclick="return updateInfo(<?php echo @$us_id; ?>);" class="btn btn-info">
|
---|
| 130 | <i class="icon-ok bigger-110"></i>
|
---|
| 131 | Cáºp nháºt
|
---|
| 132 | </button>
|
---|
| 133 |
|
---|
| 134 | </div>
|
---|
[527] | 135 | <div class="col-md-offset-3 col-md-9"><label id="updating" style="display: none;"><span class="icon-refresh icon-refresh-animate"></span> Äang xá» lÜ...</label>
|
---|
[504] | 136 | </div>
|
---|
| 137 | </div>
|
---|
| 138 | </form>
|
---|
| 139 | </div>
|
---|
| 140 |
|
---|
| 141 |
|
---|
| 142 | <div class="tab-pane" id="edit-password">
|
---|
| 143 | <form id="frm2" class="form-horizontal" role="form">
|
---|
| 144 | <h4 class="header blue bolder smaller">Äá»i máºt khẩu</h4>
|
---|
| 145 | <div class="form-group">
|
---|
| 146 | <label for="form-field-passwd" class="col-sm-3 control-label no-padding-right">Máºt khẩu cÅ©</label>
|
---|
| 147 | <div class="col-sm-9">
|
---|
| 148 | <label class="block clearfix has-error">
|
---|
| 149 | <span class="input-icon">
|
---|
| 150 | <input type="password" name="passwd" id="form-field-pass1">
|
---|
| 151 | <i class="icon-lock blue"></i>
|
---|
| 152 | </span>
|
---|
| 153 |
|
---|
| 154 | <small><div class="help-block" id="passwd_old_err"> </div></small>
|
---|
| 155 | </label>
|
---|
| 156 |
|
---|
| 157 | </div>
|
---|
| 158 | </div>
|
---|
| 159 |
|
---|
| 160 | <div class="form-group">
|
---|
| 161 | <label for="form-field-pass1" class="col-sm-3 control-label no-padding-right">Máºt khẩu má»i</label>
|
---|
| 162 |
|
---|
| 163 | <div class="col-sm-9">
|
---|
| 164 | <label class="block clearfix has-error">
|
---|
| 165 | <span class="input-icon">
|
---|
| 166 | <input type="password" name="passwd_new" id="form-field-pass1">
|
---|
| 167 | <i class="icon-lock blue"></i>
|
---|
| 168 | </span>
|
---|
| 169 | <small><div class="help-block" id="passwd_new_err"> </div></small>
|
---|
| 170 | </label>
|
---|
| 171 | </div>
|
---|
| 172 | </div>
|
---|
| 173 |
|
---|
| 174 | <div class="space-4"></div>
|
---|
| 175 |
|
---|
| 176 | <div class="form-group">
|
---|
| 177 | <label for="form-field-pass2" class="col-sm-3 control-label no-padding-right">Gõ lại máºt khẩu má»i</label>
|
---|
| 178 | <div class="col-sm-9">
|
---|
| 179 | <label class="block clearfix has-error">
|
---|
| 180 | <span class="input-icon">
|
---|
| 181 | <input type="password" name="confirm_passwd_new" id="form-field-pass2">
|
---|
| 182 | </span>
|
---|
| 183 | <small><div class="help-block" id="confirm_passwd_new_err"> </div></small>
|
---|
| 184 | </label>
|
---|
| 185 | </div>
|
---|
| 186 | </div>
|
---|
| 187 | <div class="clearfix form-actions">
|
---|
| 188 | <div class="col-md-offset-3 col-md-9">
|
---|
| 189 | <button type="button" onclick="return changePassword(<?php echo @$us_id; ?>);" class="btn btn-info">
|
---|
| 190 | <i class="icon-ok bigger-110"></i>
|
---|
| 191 | Thay Äá»i
|
---|
| 192 | </button>
|
---|
| 193 | </div>
|
---|
| 194 | </div>
|
---|
| 195 |
|
---|
| 196 | </form>
|
---|
| 197 |
|
---|
[714] | 198 | <!--div class="alert alert-block alert-success">
|
---|
[504] | 199 |
|
---|
| 200 | <p>
|
---|
[625] | 201 | QuÜ vá» cÅ©ng có thá» thay Äá»i máºt khẩu bằng cách dùng sá» Äiá»n thoại <strong><?php echo $username; ?></strong> và soạn tin theo cú pháp: <strong>SBG MK [MatKhauMoi]</strong> gá»i tá»i <strong>8062</strong> (500Ä/tin).
|
---|
[504] | 202 | <p/>
|
---|
[714] | 203 | </div-->
|
---|
[504] | 204 | </div>
|
---|
| 205 |
|
---|
| 206 | <div class="tab-pane" id="account-info">
|
---|
| 207 | <form id="frm3" class="form-horizontal" role="form">
|
---|
| 208 | <h4 class="header blue bolder smaller">ThÎng tin tà i khoản</h4>
|
---|
[629] | 209 | <div class="col-sm-12">
|
---|
[608] | 210 | <h4>Sá» tiá»n trong tà i khoản SBG Online: <b><span class="blue" id="topup-money"><?php echo number_format(@$acc_balanced, 0); ?> VNÄ <span></b></h4>
|
---|
[526] | 211 |
|
---|
[629] | 212 | </div>
|
---|
[504] | 213 | <h4 class="header blue bolder smaller">Nạp tiá»n bằng thẻ cà o</h4>
|
---|
| 214 | <div class="col-sm-8">
|
---|
| 215 | <div class="form-group">
|
---|
| 216 | <label for="form-field-pass1" class="col-sm-2 control-label no-padding-right">Mã thẻ</label>
|
---|
| 217 |
|
---|
| 218 | <div class="col-sm-10">
|
---|
[636] | 219 | <input type="text" id="pin_card" name="pin_card" class="form-control">
|
---|
[504] | 220 | </div>
|
---|
| 221 | </div>
|
---|
| 222 |
|
---|
| 223 | <div class="space-4"></div>
|
---|
| 224 |
|
---|
| 225 | <div class="form-group">
|
---|
| 226 | <label for="form-field-pass2" class="col-sm-2 control-label no-padding-right">Serial</label>
|
---|
| 227 |
|
---|
| 228 | <div class="col-sm-10">
|
---|
[636] | 229 | <input type="text" id="card_serial" name="card_serial" class="form-control">
|
---|
[504] | 230 | </div>
|
---|
| 231 | </div>
|
---|
| 232 | </div>
|
---|
| 233 | <div class="col-sm-4">
|
---|
[591] | 234 | <button type="button" id="btn-charge" onclick="return chargeCard(<?php echo @$us_id; ?>);" class="btn btn-success">
|
---|
[504] | 235 | <i class="icon-ok bigger-110"></i>
|
---|
| 236 | Tiếp tục
|
---|
| 237 | </button>
|
---|
[527] | 238 | <div class="space-4"></div>
|
---|
| 239 | <label id="charging" style="display: none;"><span class="icon-refresh icon-refresh-animate"></span> Xin chá»...</label>
|
---|
[504] | 240 | <div class="space-4"></div>
|
---|
[574] | 241 | <a onclick="tradeHistory(<?php echo $us_id; ?>, 1);" data-toggle="modal"><i class="icon-archive"></i> Lá»ch sá» giao dá»ch</a>
|
---|
[504] | 242 | </div>
|
---|
| 243 | <div class="clearfix">
|
---|
| 244 |
|
---|
| 245 | </div>
|
---|
| 246 | <h4 class="header blue bolder smaller">Nạp tiá»n bằng tà i khoản gá»c</h4>
|
---|
| 247 | <div class="alert alert-block alert-success">
|
---|
[707] | 248 | <p>
|
---|
| 249 | <span <?php if(($is_viettel==1)) /*echo 'style="display: none;"'*/{?> >Sá» dụng thuê bao <strong><?php echo @$username; ?></strong> soạn tin nhắn: <strong>SBG NAP [SoTien] gá»i 8062</strong>.<?php } ?> </span><br/>
|
---|
[625] | 250 | Nếu QuÜ vá» sá» dụng thuê bao Viettel khác thì soạn tin nhắn: <strong>SBG NAP [SoTien] <?php echo $username; ?> gá»i tá»i 8062</strong>.
|
---|
[541] | 251 |
|
---|
[504] | 252 | </p>
|
---|
| 253 | </div>
|
---|
| 254 | </form>
|
---|
| 255 | </div>
|
---|
| 256 | <div class="tab-pane" id="services-register">
|
---|
[521] | 257 | <!--<form action="<?php echo base_url();?>frontend/user/packageRegister" class="form-horizontal" id="package_register"> -->
|
---|
[530] | 258 | <form action="<?php echo base_url();?>frontend/user/packageRegister" method="POST" class="form-horizontal" id="package_register">
|
---|
[643] | 259 | <h4 class="header blue bolder smaller">ThÃŽng tin dá»ch vụ <a onclick="regisHistory(<?php echo $us_id; ?>, 1);" data-toggle="modal"><i class="icon-archive"></i> Lá»ch sá» ÄÄng kÜ dá»ch vụ</a></h4>
|
---|
[526] | 260 | <div class="col-sm-6">
|
---|
[556] | 261 | <h4><b>Thá»i hạn sá» dụng</b></h4> <h3><b><span class="blue"><?php echo isset($expire_date) && strtotime($expire_date)>0 ? date('d/m/Y', strtotime($expire_date)) : '';?> </span></b></h3>
|
---|
[526] | 262 | </div>
|
---|
| 263 | <div class="col-sm-6">
|
---|
[608] | 264 | <h4>Sá» tiá»n trong tà i khoản SBG Online</h4><h3> <span id="vip-regis-money"> <?php echo number_format(@$acc_balanced, 0); ?></span> VNÄ <span id="add_money" style="cursor:pointer" class="badge" >Nạp thêm tiá»n</span></h3>
|
---|
[504] | 265 | </div>
|
---|
[526] | 266 |
|
---|
[545] | 267 | <h4 class="header blue bolder smaller">ÄÄng kÜ / Gia hạn dá»ch vụ</h4>
|
---|
[521] | 268 |
|
---|
[625] | 269 | <h5>Má»i QuÜ vá» chá»n các gói dá»ch vụ sau:</h5>
|
---|
[504] | 270 | <div class="errors" id="package_register">
|
---|
| 271 |
|
---|
| 272 | </div>
|
---|
| 273 | <div class="alert alert-block alert-success">
|
---|
| 274 | <table class="table">
|
---|
| 275 | <tbody>
|
---|
| 276 | <?php foreach ($packages as $index=>$package)
|
---|
| 277 | {
|
---|
| 278 | ?>
|
---|
| 279 | <tr>
|
---|
| 280 | <td class="center">
|
---|
| 281 | <label>
|
---|
| 282 | <input <?php if($index==0) {echo "checked='checked'";}?> type="radio" value="<?php echo $package['p_id'];?>" name="p_id" class="ace" />
|
---|
| 283 | <span class="lbl"></span>
|
---|
| 284 | </label>
|
---|
| 285 | </td>
|
---|
[539] | 286 | <td><?php echo $package['p_name'];?></td>
|
---|
| 287 | <td><?php echo $package['p_period'],' tháng (', number_format($package['p_price'], 0); ?> VNÄ)</td>
|
---|
| 288 |
|
---|
[504] | 289 | </tr>
|
---|
| 290 | <?php } ?>
|
---|
| 291 |
|
---|
| 292 | </tbody>
|
---|
| 293 | </table>
|
---|
[545] | 294 | <button type="submit" class="btn btn-success">Tiếp tục</button>
|
---|
[504] | 295 | </div>
|
---|
[545] | 296 |
|
---|
[557] | 297 | <?php if ($is_viettel==true) { ?>
|
---|
| 298 | <h4 class="header blue bolder smaller"></h4>
|
---|
| 299 | <div class="alert alert-block alert-success">
|
---|
| 300 | <p>
|
---|
[716] | 301 | QuÜ vá» cÅ©ng có thá» sá» dụng sá» Äiá»n thoại <strong><?php echo $username;?></strong> và soạn tin theo cú pháp: <strong>SBG VIP 1</strong> (hay VIP 3, VIP 6, VIP 12) <strong>gá»i tá»i 8062</strong> (Há» thá»ng sẜ trừ tiá»n trên tà i khoản chÃnh cá»§a sá» Äiá»n thoại <strong><?php echo $username;?></strong>)
|
---|
[557] | 302 | </p>
|
---|
| 303 | </div>
|
---|
| 304 | <?php } ?>
|
---|
| 305 |
|
---|
| 306 |
|
---|
[504] | 307 | </form>
|
---|
| 308 | </div>
|
---|
| 309 |
|
---|
| 310 | </div>
|
---|
| 311 | </div>
|
---|
| 312 | </div><!-- /span -->
|
---|
| 313 | </div>
|
---|
| 314 |
|
---|
| 315 | <!-- PAGE CONTENT ENDS -->
|
---|
| 316 | </div><!-- /.col -->
|
---|
| 317 | </div><!-- /.row -->
|
---|
| 318 | </div><!-- /.page-content -->
|
---|
| 319 | </div><!-- /.main-content -->
|
---|
| 320 | </div><!-- /.main-container-inner -->
|
---|
| 321 |
|
---|
[631] | 322 | <!-- <a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse">
|
---|
[504] | 323 | <i class="icon-double-angle-up icon-only bigger-110"></i>
|
---|
[631] | 324 | </a> -->
|
---|
[504] | 325 | </div><!-- /.main-container -->
|
---|
| 326 |
|
---|
| 327 | <div class="modal fade" id="trade-history" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 328 | <div class="modal-dialog">
|
---|
| 329 | <div class="modal-content">
|
---|
| 330 | <div class="modal-header">
|
---|
| 331 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 332 | <h4 class="modal-title">Lá»ch sá» giao dá»ch</h4>
|
---|
| 333 | </div>
|
---|
| 334 | <div class="modal-body">
|
---|
| 335 | <div class="table-responsive">
|
---|
| 336 | <table id="sample-table-1" class="table table-striped table-bordered table-hover">
|
---|
| 337 | <thead>
|
---|
| 338 | <tr>
|
---|
| 339 | <th class="center">
|
---|
[559] | 340 | Từ
|
---|
[504] | 341 | </th>
|
---|
[570] | 342 | <th class="center">Sá» tiá»n (VNÄ)</th>
|
---|
[504] | 343 | <th>
|
---|
| 344 | <i class="icon-time bigger-110 hidden-480"></i>
|
---|
| 345 | Thá»i gian
|
---|
| 346 | </th>
|
---|
| 347 | </tr>
|
---|
| 348 | </thead>
|
---|
[574] | 349 | <tbody id="content-trade-histoty">
|
---|
[504] | 350 | </tbody>
|
---|
| 351 | </table>
|
---|
[574] | 352 | <div>
|
---|
| 353 | <div class="dataTables_paginate paging_bootstrap">
|
---|
| 354 | <ul class="pagination">
|
---|
| 355 | </ul>
|
---|
| 356 | </div>
|
---|
| 357 | </div>
|
---|
[504] | 358 | </div><!-- /.table-responsive -->
|
---|
| 359 | </div>
|
---|
| 360 | </div>
|
---|
| 361 | </div>
|
---|
| 362 | </div>
|
---|
| 363 |
|
---|
| 364 | <div class="modal fade" id="package_register_modal" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 365 | <div class="modal-dialog">
|
---|
| 366 | <div class="modal-content">
|
---|
| 367 | <div class="modal-header">
|
---|
| 368 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 369 | <h4 class="modal-title">ÄÄng kÜ gói dá»ch vụ</h4>
|
---|
| 370 | </div>
|
---|
| 371 | <div class="modal-body">
|
---|
| 372 | <div class="alert alert-block alert-success">
|
---|
| 373 |
|
---|
| 374 | </div>
|
---|
| 375 | </div>
|
---|
| 376 | </div>
|
---|
| 377 | </div>
|
---|
| 378 | </div>
|
---|
| 379 |
|
---|
| 380 | <div class="modal fade" id="changeProfile" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 381 | <div class="modal-dialog">
|
---|
| 382 | <div class="modal-content">
|
---|
| 383 | <div class="modal-header">
|
---|
| 384 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 385 | <h4 class="modal-title">Thay Äá»i sá» Äiá»n thoại</h4>
|
---|
| 386 | </div>
|
---|
| 387 | <div class="modal-body">
|
---|
| 388 | <div class="alert alert-block alert-success">
|
---|
[638] | 389 | <?php echo lang('_SBG_USER_PHONENUM_CHANGE_MSG'); ?>
|
---|
[504] | 390 | </div>
|
---|
| 391 | </div>
|
---|
| 392 | </div>
|
---|
| 393 | </div>
|
---|
| 394 | </div>
|
---|
| 395 |
|
---|
| 396 | <div class="modal fade" id="changePassSuccess" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 397 | <div class="modal-dialog">
|
---|
| 398 | <div class="modal-content">
|
---|
| 399 | <div class="modal-header">
|
---|
| 400 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 401 | <h4 class="modal-title">Äá»i máºt khẩu</h4>
|
---|
| 402 | </div>
|
---|
| 403 | <div class="modal-body">
|
---|
[638] | 404 | <div class="alert alert-block alert-success"><center><?php echo lang('_SBG_USER_PASSWORD_CHANGE_SUCCESS_MSG'); ?></center></div>
|
---|
[504] | 405 | <center><button class="btn btn-primary" data-dismiss="modal">Äóng</button></center>
|
---|
| 406 | </div>
|
---|
| 407 |
|
---|
| 408 | </div>
|
---|
| 409 | </div>
|
---|
| 410 | </div>
|
---|
| 411 |
|
---|
| 412 | <div class="modal fade" id="updateInfoSuccess" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 413 | <div class="modal-dialog">
|
---|
| 414 | <div class="modal-content">
|
---|
| 415 | <div class="modal-header">
|
---|
| 416 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 417 | <h4 class="modal-title">Cáºp nháºt thÃŽng tin</h4>
|
---|
| 418 | </div>
|
---|
| 419 | <div class="modal-body">
|
---|
[638] | 420 | <div class="alert alert-block alert-success"><center><?php echo lang('_SBG_USER_UPDATE_INFO_SUCCESS_MSG'); ?><center></div>
|
---|
[504] | 421 | <center><button id="close" class="btn btn-primary" data-dismiss="modal">Äóng</button></center>
|
---|
| 422 | </div>
|
---|
| 423 |
|
---|
| 424 | </div>
|
---|
| 425 | </div>
|
---|
| 426 | </div>
|
---|
[511] | 427 |
|
---|
| 428 | <div class="modal fade" id="success_package_register_modal" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 429 | <div class="modal-dialog">
|
---|
| 430 | <div class="modal-content">
|
---|
| 431 | <div class="modal-header">
|
---|
| 432 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 433 | <h4 class="modal-title">ÄÄng kà thà nh cÃŽng</h4>
|
---|
| 434 | </div>
|
---|
| 435 | <div class="modal-body">
|
---|
[638] | 436 | <div id="success_package_register_content" class="alert alert-block alert-success"><center></center></div>
|
---|
[521] | 437 | <center><button id="package_register_finish_button" class="btn btn-primary" data-dismiss="modal">Äóng</button></center>
|
---|
[511] | 438 | </div>
|
---|
| 439 |
|
---|
| 440 | </div>
|
---|
| 441 | </div>
|
---|
| 442 | </div>
|
---|
| 443 |
|
---|
[519] | 444 | <div class="modal fade" id="success_charge" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 445 | <div class="modal-dialog">
|
---|
| 446 | <div class="modal-content">
|
---|
| 447 | <div class="modal-header">
|
---|
| 448 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 449 | <h4 class="modal-title">Nạp tiá»n</h4>
|
---|
| 450 | </div>
|
---|
| 451 | <div class="modal-body">
|
---|
[638] | 452 | <div id="success_charge_info" class="alert alert-block alert-success"><center></center></div>
|
---|
[519] | 453 | <center><button id="package_register_finish_button" data-dismiss="modal" class="btn btn-primary" >Äóng</button></center>
|
---|
| 454 | </div>
|
---|
| 455 |
|
---|
| 456 | </div>
|
---|
| 457 | </div>
|
---|
| 458 | </div>
|
---|
| 459 |
|
---|
| 460 | <div class="modal fade" id="not_success_charge" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 461 | <div class="modal-dialog">
|
---|
| 462 | <div class="modal-content">
|
---|
| 463 | <div class="modal-header">
|
---|
| 464 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 465 | <h4 class="modal-title">Nạp tiá»n</h4>
|
---|
| 466 | </div>
|
---|
| 467 | <div class="modal-body">
|
---|
[620] | 468 | <div id="no_success_charge_info" class="alert alert-block alert-success"><center></center></div>
|
---|
[519] | 469 | <center><button id="package_register_finish_button" data-dismiss="modal" class="btn btn-primary" >Äóng</button></center>
|
---|
| 470 | </div>
|
---|
| 471 |
|
---|
| 472 | </div>
|
---|
| 473 | </div>
|
---|
| 474 | </div>
|
---|
| 475 |
|
---|
[642] | 476 | <div class="modal fade" id="regis-history" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 477 | <div class="modal-dialog">
|
---|
| 478 | <div class="modal-content">
|
---|
| 479 | <div class="modal-header">
|
---|
| 480 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 481 | <h4 class="modal-title">Lá»ch sá» ÄÄng kÜ dá»ch vụ</h4>
|
---|
| 482 | </div>
|
---|
| 483 | <div class="modal-body">
|
---|
| 484 | <div class="table-responsive">
|
---|
| 485 | <table id="sample-table-1" class="table table-striped table-bordered table-hover">
|
---|
| 486 | <thead>
|
---|
| 487 | <tr>
|
---|
| 488 | <th class="center">
|
---|
| 489 | Từ
|
---|
| 490 | </th>
|
---|
| 491 | <th class="center"> Gói dá»ch vụ </th>
|
---|
| 492 | <th>
|
---|
| 493 | <i class="icon-time bigger-110 hidden-480"></i>
|
---|
| 494 | Thá»i gian
|
---|
| 495 | </th>
|
---|
| 496 | </tr>
|
---|
| 497 | </thead>
|
---|
| 498 | <tbody id="content-regis-histoty">
|
---|
| 499 | </tbody>
|
---|
| 500 | </table>
|
---|
| 501 | <div>
|
---|
| 502 | <div class="dataTables_paginate paging_bootstrap">
|
---|
| 503 | <ul class="pagination">
|
---|
| 504 | </ul>
|
---|
| 505 | </div>
|
---|
| 506 | </div>
|
---|
| 507 | </div><!-- /.table-responsive -->
|
---|
| 508 | </div>
|
---|
| 509 | </div>
|
---|
| 510 | </div>
|
---|
| 511 | </div>
|
---|
| 512 |
|
---|
[505] | 513 | <script type="text/javascript">
|
---|
[521] | 514 | var url="<?php echo base_url();?>";
|
---|
| 515 | var current_tab="<?php echo $current_tab;?>";
|
---|
[608] | 516 | //var current_balanced = <?php echo $acc_balanced; ?>;
|
---|
[505] | 517 | </script>
|
---|
[504] | 518 | <?php
|
---|
| 519 | $this->load->view('layout/frontend/footer', array('base_url' => $base_url, 'usjs' => array('assets/js/frontend/user.js')));
|
---|
| 520 | ?> |
---|