1 | <div class="modal fade" id="package_register_modal" tabindex="-1" role="dialog"aria-hidden="true"> |
---|
2 | <div class="modal-dialog"> |
---|
3 | <div class="modal-content"> |
---|
4 | <div class="modal-header"> |
---|
5 | <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> |
---|
6 | <h4 class="modal-title">ÄÄng kÜ gói dá»ch vụ</h4> |
---|
7 | </div> |
---|
8 | <div class="modal-body"> |
---|
9 | |
---|
10 | <?php if ($can_buy == 0) { ?> |
---|
11 | <div class="alert alert-block alert-success"> |
---|
12 | Sá» tiá»n trong Tà i khoản SBG Online hiá»n tại cá»§a Quà vá» là <?php echo $user['acc_balanced']; ?> Äá»ng.<br /> Äá» ÄÄng kà Sá» dụng dá»ch vụ Soạn Bà i giảng trá»±c tuyến, Quà vá» cần nạp thêm tiá»n và o tà i khoản. |
---|
13 | </div> |
---|
14 | <?php } ?> |
---|
15 | |
---|
16 | |
---|
17 | <?php if ($can_buy == 1) { ?> |
---|
18 | <form id="do_package_register" class="form-horizontal" action="#" method="POST"> |
---|
19 | <input name="p_id" value="<?php echo $package['p_id']; ?>" type="hidden" /> |
---|
20 | <div class="errors" id="package_register_errors"> |
---|
21 | |
---|
22 | </div> |
---|
23 | <div class="form-group"> |
---|
24 | <label for="form-field-first" class="col-sm-4 control-label no-padding-right"> |
---|
25 | HỠvà tên</label> |
---|
26 | <div class="col-sm-8"> |
---|
27 | <input name="fullname" <?php if ($can_edit == 0) { ?> disabled <?php } ?> type="text" value="<?php echo $info['fullname']; ?>" placeholder="HỠvà tên" id="form-field-first" class="input-large"> |
---|
28 | </div> |
---|
29 | </div> |
---|
30 | |
---|
31 | <div class="space-4"></div> |
---|
32 | |
---|
33 | <div class="form-group"> |
---|
34 | <label for="form-field-username" class="col-sm-4 control-label no-padding-right"> |
---|
35 | ÄÆ¡n vá»</label> |
---|
36 | <div class="col-sm-8"> |
---|
37 | <input name="school" <?php if ($can_edit == 0) { ?> disabled <?php } ?> type="text" value="<?php echo $info['school']; ?>" placeholder="ÄÆ¡n vá»" id="form-field-first" class="input-large"> |
---|
38 | </div> |
---|
39 | </div> |
---|
40 | </form> |
---|
41 | <?php } ?> |
---|
42 | <div class="modal-footer"> |
---|
43 | <?php if ($can_buy == 0) { ?> |
---|
44 | <a id="package_register_back" class="btn btn-success" data-dismiss="modal">Nạp thêm tiá»n</a> |
---|
45 | <?php } ?> |
---|
46 | <?php if ($can_buy == 1) { ?> |
---|
47 | <a href="#" id="finish_package_register" class="btn btn-success" >Hoà n tất</a> |
---|
48 | <?php } ?> |
---|
49 | </div> |
---|
50 | </div> |
---|
51 | </div> |
---|
52 | </div> |
---|
53 | </div> |
---|