source: pro-violet-viettel/sourcecode/application/modules/frontend/views/package_register_modal.php @ 547

Last change on this file since 547 was 547, checked in by quyenla, 11 years ago
File size: 3.5 KB
Line 
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">&times;</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 />
13                        Tài khoản chính cá»§a quí vị khÃŽng đủ để đăng kí sá»­ dụng cÃŽng cụ Soạn Bài Giảng trá»±c tuyến trên soanbaigiang.smas.vn. Hãy nạp thêm tiền và đăng kí lại. Cảm Æ¡n!
14                    </div>
15                <?php } ?>
16               
17
18                <?php if ($can_buy == 1) { ?>
19                    <form id="do_package_register" class="form-horizontal" action="#" method="POST">
20                        <input name="p_id" value="<?php echo $package['p_id']; ?>" type="hidden" />
21                        <div class="errors" id="package_register_errors">
22                           
23                        </div>
24                        <div class="form-group">
25                            <label for="form-field-first" class="col-sm-4 control-label no-padding-right">
26                                Họ và tên</label>
27                            <div class="col-sm-8">
28                                <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">
29                            </div>
30                        </div>
31
32                        <div class="space-4"></div>
33
34                        <div class="form-group">
35                            <label for="form-field-username" class="col-sm-4 control-label no-padding-right">
36                                Đơn vị</label>
37                            <div class="col-sm-8">
38                                <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">
39                            </div>
40                        </div>
41                         <?php if ($can_edit == 1) { ?>
42                        (Lưu Ü: Quí vị cần điền đầy đủ Họ tên chính xác bằng tiếng Việt có dấu, các tên đơn vị sẜ khÃŽng được chấp nhận. ThÃŽng tin Họ tên sẜ khÃŽng thể thay đổi sau khi Quí vị Đăng kí Sá»­ dụng dịch vụ.<br />
43                   <?php } ?>
44                    </form>
45                <?php } ?>
46                <div class="modal-footer">
47                    <?php if ($can_buy == 0) { ?>
48                    <a id="package_register_back" class="btn btn-success" data-dismiss="modal">Nạp thêm tiền</a>
49                    <?php } ?>
50                        <?php if ($can_buy == 1) { ?>
51                   
52                        <a href="#" id="finish_package_register" class="btn btn-success" >Hoàn tất</a>
53                    <?php } ?>
54                </div>
55            </div>
56        </div>
57    </div>
58</div>
Note: See TracBrowser for help on using the repository browser.