[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">
|
---|
[519] | 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 (@$use_package) 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">
|
---|
| 103 | <input type="text" name="province" value="<?php echo @$province; ?>" placeholder="Tá»nh / Thà nh phá»" id="form-field-username" class="col-xs-12 col-sm-10">
|
---|
| 104 | </div>
|
---|
| 105 | </div>
|
---|
| 106 |
|
---|
| 107 | </div>
|
---|
| 108 | <div class="col-sm-3">
|
---|
| 109 | <h4><small><a href="#" data-toggle="modal" data-target="#changeProfile"><i>Äá»i sá» Äiá»n thoại</i></a></small></h4>
|
---|
| 110 | </div>
|
---|
| 111 | </div>
|
---|
| 112 | <div class="space-4"></div>
|
---|
| 113 |
|
---|
| 114 | <div class="clearfix form-actions">
|
---|
| 115 | <div class="col-md-offset-3 col-md-9">
|
---|
| 116 | <button type="button" onclick="return updateInfo(<?php echo @$us_id; ?>);" class="btn btn-info">
|
---|
| 117 | <i class="icon-ok bigger-110"></i>
|
---|
| 118 | Cáºp nháºt
|
---|
| 119 | </button>
|
---|
| 120 |
|
---|
| 121 | </div>
|
---|
[527] | 122 | <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] | 123 | </div>
|
---|
| 124 | </div>
|
---|
| 125 | </form>
|
---|
| 126 | </div>
|
---|
| 127 |
|
---|
| 128 |
|
---|
| 129 | <div class="tab-pane" id="edit-password">
|
---|
| 130 | <form id="frm2" class="form-horizontal" role="form">
|
---|
| 131 | <h4 class="header blue bolder smaller">Äá»i máºt khẩu</h4>
|
---|
| 132 | <div class="form-group">
|
---|
| 133 | <label for="form-field-passwd" class="col-sm-3 control-label no-padding-right">Máºt khẩu cÅ©</label>
|
---|
| 134 | <div class="col-sm-9">
|
---|
| 135 | <label class="block clearfix has-error">
|
---|
| 136 | <span class="input-icon">
|
---|
| 137 | <input type="password" name="passwd" id="form-field-pass1">
|
---|
| 138 | <i class="icon-lock blue"></i>
|
---|
| 139 | </span>
|
---|
| 140 |
|
---|
| 141 | <small><div class="help-block" id="passwd_old_err"> </div></small>
|
---|
| 142 | </label>
|
---|
| 143 |
|
---|
| 144 | </div>
|
---|
| 145 | </div>
|
---|
| 146 |
|
---|
| 147 | <div class="form-group">
|
---|
| 148 | <label for="form-field-pass1" class="col-sm-3 control-label no-padding-right">Máºt khẩu má»i</label>
|
---|
| 149 |
|
---|
| 150 | <div class="col-sm-9">
|
---|
| 151 | <label class="block clearfix has-error">
|
---|
| 152 | <span class="input-icon">
|
---|
| 153 | <input type="password" name="passwd_new" id="form-field-pass1">
|
---|
| 154 | <i class="icon-lock blue"></i>
|
---|
| 155 | </span>
|
---|
| 156 | <small><div class="help-block" id="passwd_new_err"> </div></small>
|
---|
| 157 | </label>
|
---|
| 158 | </div>
|
---|
| 159 | </div>
|
---|
| 160 |
|
---|
| 161 | <div class="space-4"></div>
|
---|
| 162 |
|
---|
| 163 | <div class="form-group">
|
---|
| 164 | <label for="form-field-pass2" class="col-sm-3 control-label no-padding-right">Gõ lại máºt khẩu má»i</label>
|
---|
| 165 | <div class="col-sm-9">
|
---|
| 166 | <label class="block clearfix has-error">
|
---|
| 167 | <span class="input-icon">
|
---|
| 168 | <input type="password" name="confirm_passwd_new" id="form-field-pass2">
|
---|
| 169 | </span>
|
---|
| 170 | <small><div class="help-block" id="confirm_passwd_new_err"> </div></small>
|
---|
| 171 | </label>
|
---|
| 172 | </div>
|
---|
| 173 | </div>
|
---|
| 174 | <div class="clearfix form-actions">
|
---|
| 175 | <div class="col-md-offset-3 col-md-9">
|
---|
| 176 | <button type="button" onclick="return changePassword(<?php echo @$us_id; ?>);" class="btn btn-info">
|
---|
| 177 | <i class="icon-ok bigger-110"></i>
|
---|
| 178 | Thay Äá»i
|
---|
| 179 | </button>
|
---|
| 180 | </div>
|
---|
| 181 | </div>
|
---|
| 182 |
|
---|
| 183 | </form>
|
---|
| 184 |
|
---|
| 185 | <div class="alert alert-block alert-success">
|
---|
| 186 |
|
---|
| 187 | <p>
|
---|
[519] | 188 | 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>.
|
---|
[504] | 189 | <p/>
|
---|
| 190 | </div>
|
---|
| 191 | </div>
|
---|
| 192 |
|
---|
| 193 | <div class="tab-pane" id="account-info">
|
---|
| 194 | <form id="frm3" class="form-horizontal" role="form">
|
---|
| 195 | <h4 class="header blue bolder smaller">ThÎng tin tà i khoản</h4>
|
---|
[526] | 196 | <div class="col-sm-6">
|
---|
| 197 | <h4>Sá» tiá»n trong tà i khoản SBG Online: <b><span class="blue"><?php echo number_format(@$acc_balanced, 0); ?> VNÄ <span></b></h4>
|
---|
| 198 |
|
---|
[504] | 199 | </div>
|
---|
[526] | 200 | <div class="col-sm-6">
|
---|
| 201 | <h3> </h3>
|
---|
| 202 | </div>
|
---|
[504] | 203 | <h4 class="header blue bolder smaller">Nạp tiá»n bằng thẻ cà o</h4>
|
---|
| 204 | <div class="col-sm-8">
|
---|
| 205 | <div class="form-group">
|
---|
| 206 | <label for="form-field-pass1" class="col-sm-2 control-label no-padding-right">Mã thẻ</label>
|
---|
| 207 |
|
---|
| 208 | <div class="col-sm-10">
|
---|
[519] | 209 | <input type="text" id="form-field-pass1" name="pin_card" class="form-control">
|
---|
[504] | 210 | </div>
|
---|
| 211 | </div>
|
---|
| 212 |
|
---|
| 213 | <div class="space-4"></div>
|
---|
| 214 |
|
---|
| 215 | <div class="form-group">
|
---|
| 216 | <label for="form-field-pass2" class="col-sm-2 control-label no-padding-right">Serial</label>
|
---|
| 217 |
|
---|
| 218 | <div class="col-sm-10">
|
---|
[519] | 219 | <input type="text" id="form-field-pass2" name="card_serial" class="form-control">
|
---|
[504] | 220 | </div>
|
---|
| 221 | </div>
|
---|
| 222 | </div>
|
---|
| 223 | <div class="col-sm-4">
|
---|
[527] | 224 | <button type="button" id="btn-charge" onclick="return chargeCard(<?php echo @$us_id; ?>);" class="btn btn-success">
|
---|
[504] | 225 | <i class="icon-ok bigger-110"></i>
|
---|
| 226 | Tiếp tục
|
---|
| 227 | </button>
|
---|
[527] | 228 | <div class="space-4"></div>
|
---|
| 229 | <label id="charging" style="display: none;"><span class="icon-refresh icon-refresh-animate"></span> Xin chá»...</label>
|
---|
[504] | 230 | <div class="space-4"></div>
|
---|
| 231 | <a href="#" data-toggle="modal" data-target="#trade-history"><i class="icon-archive"></i> Lá»ch sá» giao dá»ch</a>
|
---|
| 232 | </div>
|
---|
| 233 | <div class="clearfix">
|
---|
| 234 |
|
---|
| 235 | </div>
|
---|
| 236 | <h4 class="header blue bolder smaller">Nạp tiá»n bằng tà i khoản gá»c</h4>
|
---|
| 237 | <div class="alert alert-block alert-success">
|
---|
| 238 | <p>
|
---|
| 239 | Sá» dụng thuê bao <strong><?php echo @$username; ?></strong> soạn tin nhắn: <strong>SBG NAP [sotien] gá»i 8062</strong>. <br/>
|
---|
[519] | 240 | Nếu quà vỠsỠdụng thuê bao Viettel khác thì soạn tin nhắn: <strong>SBG NAP <?php echo $username; ?>
|
---|
[504] | 241 | [sotien] gá»i tá»i 8062</strong>.
|
---|
| 242 | </p>
|
---|
| 243 | </div>
|
---|
| 244 | </form>
|
---|
| 245 | </div>
|
---|
| 246 | <div class="tab-pane" id="services-register">
|
---|
[521] | 247 | <!--<form action="<?php echo base_url();?>frontend/user/packageRegister" class="form-horizontal" id="package_register"> -->
|
---|
| 248 | <form action="<?php echo base_url();?>frontend/user/regpackage" method="POST" class="form-horizontal" id="package_register">
|
---|
[526] | 249 | <h4 class="header blue bolder smaller">ThÃŽng tin dá»ch vụ</h4>
|
---|
| 250 | <div class="col-sm-6">
|
---|
[527] | 251 | <h4><b>Thá»i hạn sá» dụng</b></h4> <h3><b><span class="blue"><?php if(strtotime($expire_date)>0) { echo date('d/m/Y', strtotime($expire_date));}else { echo '';} ?> </span></b></h3>
|
---|
[526] | 252 | </div>
|
---|
| 253 | <div class="col-sm-6">
|
---|
| 254 | <h4>Sá» tiá»n trong tà i khoản SBG Online</h4><h3> <?php echo number_format(@$acc_balanced, 0); ?> VNÄ <span id="add_money" style="cursor:pointer" class="badge" >Nạp thêm tiá»n</span></h3>
|
---|
[504] | 255 | </div>
|
---|
[526] | 256 |
|
---|
[504] | 257 | <h4 class="header blue bolder smaller">ÄÄng kÜ dá»ch vụ</h4>
|
---|
[521] | 258 |
|
---|
[504] | 259 | <h5>Cách 1: Má»i quà vá» chá»n các gói dá»ch vụ sau</h5>
|
---|
| 260 | <div class="errors" id="package_register">
|
---|
| 261 |
|
---|
| 262 | </div>
|
---|
| 263 | <div class="alert alert-block alert-success">
|
---|
| 264 | <table class="table">
|
---|
| 265 | <tbody>
|
---|
| 266 | <?php foreach ($packages as $index=>$package)
|
---|
| 267 | {
|
---|
| 268 | ?>
|
---|
| 269 | <tr>
|
---|
| 270 | <td><?php echo $package['p_name'];?></td>
|
---|
| 271 | <td><?php echo $package['p_period'],' tháng (', number_format($package['p_price'], 0); ?> VNÄ)</td>
|
---|
| 272 | <td class="center">
|
---|
| 273 | <label>
|
---|
| 274 | <input <?php if($index==0) {echo "checked='checked'";}?> type="radio" value="<?php echo $package['p_id'];?>" name="p_id" class="ace" />
|
---|
| 275 | <span class="lbl"></span>
|
---|
| 276 | </label>
|
---|
| 277 | </td>
|
---|
| 278 | </tr>
|
---|
| 279 | <?php } ?>
|
---|
| 280 |
|
---|
| 281 | </tbody>
|
---|
| 282 | </table>
|
---|
| 283 | <button type="submit" class="btn btn-success">ÄÄng kÜ</button>
|
---|
| 284 | </div>
|
---|
[521] | 285 |
|
---|
[504] | 286 | <h5>Cách 2</h5>
|
---|
[521] | 287 | <h4>Soạn tin: SBG VIP [1 hay 3, 6, 12] gá»i tá»i 8062</h4>
|
---|
[504] | 288 | </form>
|
---|
| 289 | </div>
|
---|
| 290 |
|
---|
| 291 | </div>
|
---|
| 292 | </div>
|
---|
| 293 | </div><!-- /span -->
|
---|
| 294 | </div>
|
---|
| 295 |
|
---|
| 296 | <!-- PAGE CONTENT ENDS -->
|
---|
| 297 | </div><!-- /.col -->
|
---|
| 298 | </div><!-- /.row -->
|
---|
| 299 | </div><!-- /.page-content -->
|
---|
| 300 | </div><!-- /.main-content -->
|
---|
| 301 | </div><!-- /.main-container-inner -->
|
---|
| 302 |
|
---|
| 303 | <a href="#" id="btn-scroll-up" class="btn-scroll-up btn btn-sm btn-inverse">
|
---|
| 304 | <i class="icon-double-angle-up icon-only bigger-110"></i>
|
---|
| 305 | </a>
|
---|
| 306 | </div><!-- /.main-container -->
|
---|
| 307 |
|
---|
| 308 | <div class="modal fade" id="trade-history" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 309 | <div class="modal-dialog">
|
---|
| 310 | <div class="modal-content">
|
---|
| 311 | <div class="modal-header">
|
---|
| 312 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 313 | <h4 class="modal-title">Lá»ch sá» giao dá»ch</h4>
|
---|
| 314 | </div>
|
---|
| 315 | <div class="modal-body">
|
---|
| 316 | <div class="table-responsive">
|
---|
| 317 | <table id="sample-table-1" class="table table-striped table-bordered table-hover">
|
---|
| 318 | <thead>
|
---|
| 319 | <tr>
|
---|
| 320 | <th class="center">
|
---|
| 321 | <label>
|
---|
| 322 | <input type="checkbox" class="ace" />
|
---|
| 323 | <span class="lbl"></span>
|
---|
| 324 | </label>
|
---|
| 325 | </th>
|
---|
| 326 | <th>Sá» tiá»n</th>
|
---|
| 327 |
|
---|
| 328 | <th>
|
---|
| 329 | <i class="icon-time bigger-110 hidden-480"></i>
|
---|
| 330 | Thá»i gian
|
---|
| 331 | </th>
|
---|
| 332 | </tr>
|
---|
| 333 | </thead>
|
---|
| 334 |
|
---|
| 335 | <tbody>
|
---|
| 336 | <tr>
|
---|
| 337 | <td class="center">
|
---|
| 338 | <label>
|
---|
| 339 | <input type="checkbox" class="ace" />
|
---|
| 340 | <span class="lbl"></span>
|
---|
| 341 | </label>
|
---|
| 342 | </td>
|
---|
| 343 | <td>$45</td>
|
---|
| 344 | <td>Feb 12</td>
|
---|
| 345 | </tr>
|
---|
| 346 | </tbody>
|
---|
| 347 | </table>
|
---|
| 348 | </div><!-- /.table-responsive -->
|
---|
| 349 | </div>
|
---|
| 350 | </div>
|
---|
| 351 | </div>
|
---|
| 352 | </div>
|
---|
| 353 |
|
---|
| 354 | <div class="modal fade" id="alert-payment" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 355 | <div class="modal-dialog">
|
---|
| 356 | <div class="modal-content">
|
---|
| 357 | <div class="modal-header">
|
---|
| 358 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 359 | <h4 class="modal-title">ThÃŽng báo dá»ch vụ</h4>
|
---|
| 360 | </div>
|
---|
| 361 | <div class="modal-body">
|
---|
| 362 | <div class="alert alert-block alert-success">
|
---|
| 363 | <p>
|
---|
| 364 | Quà vá» Äã nạp thà nh cÃŽng <b>10.000 </b>VND và o tà i khoản <b>0168942155</b>, tà i khoản hiá»n tại cá»§a quà vá» là <b>20.000 </b>VND.
|
---|
| 365 | </p>
|
---|
| 366 | </div>
|
---|
| 367 | </div>
|
---|
| 368 | </div>
|
---|
| 369 | </div>
|
---|
| 370 | </div>
|
---|
| 371 |
|
---|
| 372 | <div class="modal fade" id="package_register_modal" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 373 | <div class="modal-dialog">
|
---|
| 374 | <div class="modal-content">
|
---|
| 375 | <div class="modal-header">
|
---|
| 376 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 377 | <h4 class="modal-title">ÄÄng kÜ gói dá»ch vụ</h4>
|
---|
| 378 | </div>
|
---|
| 379 | <div class="modal-body">
|
---|
| 380 | <div class="alert alert-block alert-success">
|
---|
| 381 |
|
---|
| 382 | </div>
|
---|
| 383 | </div>
|
---|
| 384 | </div>
|
---|
| 385 | </div>
|
---|
| 386 | </div>
|
---|
| 387 |
|
---|
| 388 | <div class="modal fade" id="changeProfile" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 389 | <div class="modal-dialog">
|
---|
| 390 | <div class="modal-content">
|
---|
| 391 | <div class="modal-header">
|
---|
| 392 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 393 | <h4 class="modal-title">Thay Äá»i sá» Äiá»n thoại</h4>
|
---|
| 394 | </div>
|
---|
| 395 | <div class="modal-body">
|
---|
| 396 | <div class="alert alert-block alert-success">
|
---|
| 397 | <p>
|
---|
| 398 | Quà vá» có thá» thay Äá»i Sá» Äiá»n thoại Äang sá» dụng bằng cách: Trên sá» Äiá»n thoại má»i, quà vá» soạn tin theo cú pháp: <strong>SBG DDT [SoDTCu] [MatKhau]</strong> gá»i tá»i <strong>8062</strong>.
|
---|
| 399 | </p>
|
---|
| 400 | </div>
|
---|
| 401 | </div>
|
---|
| 402 | </div>
|
---|
| 403 | </div>
|
---|
| 404 | </div>
|
---|
| 405 |
|
---|
| 406 | <div class="modal fade" id="changePassSuccess" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 407 | <div class="modal-dialog">
|
---|
| 408 | <div class="modal-content">
|
---|
| 409 | <div class="modal-header">
|
---|
| 410 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 411 | <h4 class="modal-title">Äá»i máºt khẩu</h4>
|
---|
| 412 | </div>
|
---|
| 413 | <div class="modal-body">
|
---|
| 414 | <div class="alert alert-block alert-success"><center>Quà vá» Äã Äá»i máºt khẩu thà nh cÃŽng !</center></div>
|
---|
| 415 | <center><button class="btn btn-primary" data-dismiss="modal">Äóng</button></center>
|
---|
| 416 | </div>
|
---|
| 417 |
|
---|
| 418 | </div>
|
---|
| 419 | </div>
|
---|
| 420 | </div>
|
---|
| 421 |
|
---|
| 422 | <div class="modal fade" id="updateInfoSuccess" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 423 | <div class="modal-dialog">
|
---|
| 424 | <div class="modal-content">
|
---|
| 425 | <div class="modal-header">
|
---|
| 426 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 427 | <h4 class="modal-title">Cáºp nháºt thÃŽng tin</h4>
|
---|
| 428 | </div>
|
---|
| 429 | <div class="modal-body">
|
---|
| 430 | <div class="alert alert-block alert-success"><center>Quà vá» Äã cáºp nháºt thÃŽng tin thà nh cÃŽng!</center></div>
|
---|
| 431 | <center><button id="close" class="btn btn-primary" data-dismiss="modal">Äóng</button></center>
|
---|
| 432 | </div>
|
---|
| 433 |
|
---|
| 434 | </div>
|
---|
| 435 | </div>
|
---|
| 436 | </div>
|
---|
[511] | 437 |
|
---|
| 438 | <div class="modal fade" id="success_package_register_modal" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 439 | <div class="modal-dialog">
|
---|
| 440 | <div class="modal-content">
|
---|
| 441 | <div class="modal-header">
|
---|
| 442 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 443 | <h4 class="modal-title">ÄÄng kà thà nh cÃŽng</h4>
|
---|
| 444 | </div>
|
---|
| 445 | <div class="modal-body">
|
---|
| 446 | <div id="success_package_register_content" class="alert alert-block alert-success"><center>Quà vá» Äã cáºp nháºt thÃŽng tin thà nh cÃŽng!</center></div>
|
---|
[521] | 447 | <center><button id="package_register_finish_button" class="btn btn-primary" data-dismiss="modal">Äóng</button></center>
|
---|
[511] | 448 | </div>
|
---|
| 449 |
|
---|
| 450 | </div>
|
---|
| 451 | </div>
|
---|
| 452 | </div>
|
---|
| 453 |
|
---|
[519] | 454 | <div class="modal fade" id="success_charge" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 455 | <div class="modal-dialog">
|
---|
| 456 | <div class="modal-content">
|
---|
| 457 | <div class="modal-header">
|
---|
| 458 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 459 | <h4 class="modal-title">Nạp tiá»n</h4>
|
---|
| 460 | </div>
|
---|
| 461 | <div class="modal-body">
|
---|
[520] | 462 | <div id="success_charge_info" class="alert alert-block alert-success"><center>Quà vá» Äã nạp thà nh cÃŽng [SoTien] và o tà i khoản <?php echo $username; ?>, tà i khoản ảo cá»§a quà vá» là [TaiKhoanAO]!</center></div>
|
---|
[519] | 463 | <center><button id="package_register_finish_button" data-dismiss="modal" class="btn btn-primary" >Äóng</button></center>
|
---|
| 464 | </div>
|
---|
| 465 |
|
---|
| 466 | </div>
|
---|
| 467 | </div>
|
---|
| 468 | </div>
|
---|
| 469 |
|
---|
| 470 | <div class="modal fade" id="not_success_charge" tabindex="-1" role="dialog"aria-hidden="true">
|
---|
| 471 | <div class="modal-dialog">
|
---|
| 472 | <div class="modal-content">
|
---|
| 473 | <div class="modal-header">
|
---|
| 474 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
---|
| 475 | <h4 class="modal-title">Nạp tiá»n</h4>
|
---|
| 476 | </div>
|
---|
| 477 | <div class="modal-body">
|
---|
[520] | 478 | <div id="no_success_charge_info" class="alert alert-block alert-success"><center>Mã thẻ hoặc Serial khÃŽng dúng hoặc Äã ÄÆ°á»£c sá» dụng. Quà vá» hãy kiá»m tra lại!</center></div>
|
---|
[519] | 479 | <center><button id="package_register_finish_button" data-dismiss="modal" class="btn btn-primary" >Äóng</button></center>
|
---|
| 480 | </div>
|
---|
| 481 |
|
---|
| 482 | </div>
|
---|
| 483 | </div>
|
---|
| 484 | </div>
|
---|
| 485 |
|
---|
[505] | 486 | <script type="text/javascript">
|
---|
[521] | 487 | var url="<?php echo base_url();?>";
|
---|
| 488 | var current_tab="<?php echo $current_tab;?>";
|
---|
| 489 | var showmessage= <?php echo (int)($message != '')?>;
|
---|
| 490 | var message = '<?php echo $message;?>';
|
---|
[505] | 491 | </script>
|
---|
[504] | 492 | <?php
|
---|
| 493 | $this->load->view('layout/frontend/footer', array('base_url' => $base_url, 'usjs' => array('assets/js/frontend/user.js')));
|
---|
| 494 | ?> |
---|