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

Last change on this file since 491 was 491, checked in by quyenla, 11 years ago

package resgister

File size: 2.7 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                <div class="alert alert-block alert-success">                                           
10                    <?php if ($can_buy==0) {?>
11                    QuÜ thầy cÃŽ khÃŽng có đủ tiền trong tài khoản để đăng kÜ gói dịch vụ này, vui lòng nạp thêm tiền hoặc chọn gói khác.
12                    <?php } ?>
13                    <?php if ($can_edit==0) {?>
14                    <p>
15                    QuÜ thầy cÃŽ kiểm tra thÃŽng tin cá nhân cá»§a mình, vui lòng điền đầy đủ họ tên.
16                    </p>
17                        <?php } ?>
18                </div>
19                <form id="do_package_register" class="form-horizontal" action="#" method="POST">
20                    <div class="form-group">
21                        <label for="form-field-first" class="col-sm-4 control-label no-padding-right">
22                            Họ và tên</label>
23                        <div class="col-sm-8">
24                            <input <?php if ($can_edit==0) {?>  disabled <?php } ?> type="text" value="<?php echo "ten"; $?>" placeholder="Họ" id="form-field-first" class="input-small">
25                            <input <?php if ($can_edit==0) {?> disabled <?php } ?>type="text" value="" placeholder="Tên" id="form-field-last" class="input-small">
26                        </div>
27                    </div>
28
29                    <div class="space-4"></div>
30
31                    <div class="form-group">
32                        <label for="form-field-username" class="col-sm-4 control-label no-padding-right">
33                            Đơn vị</label>
34                        <div class="col-sm-8">
35                            <input type="text" placeholder="Đơn vị" id="form-field-username" class="col-xs-12 col-sm-10">
36                        </div>
37                    </div>
38                </form>
39                <div class="modal-footer">
40                    <a href="#" class="btn btn-success" data-dismiss="modal">Quay lại</a>
41                    <?php if ($can_buy==1) {?>
42                    <a href="#" class="btn btn-success" data-dismiss="modal">Đăng kÜ</a>
43                    <?php } ?>
44                </div>
45            </div>
46        </div>
47    </div>
48</div>
Note: See TracBrowser for help on using the repository browser.