/var/www/hkosl.com/billingsystem/dashboard_bk/component/import.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81

        <!-- Modal  import-->
        <div class="modal fade bd-example-modal-lg" id="importCSV" tabindex="-1" role="dialog" aria-labelledby="importCSV" aria-disabled="true">
            <div class="modal-dialog modal-md modal-dialog-centered" role="document">
                <div class="modal-content">
                    <div class="modal-header">
                        <h3 class="modal-title">Import CSV
                        </h3>
                        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
                            <span aria-disabled="true">&times;</span>
                        </button>
                    </div>
                    <div class="modal-body">
                        <div class="row">
                            <div class="col-lg-6 mb-3">
                                <div class="boxShadow whiteBg mb-3 text-center h-100">
                                    <div class="hexagon shadow_orange">
                                        <div class="hex-mid hexagon-warning bold">
                                            1
                                        </div>
                                    </div>
                                    <p>Download your items template file
                                        Start by downloading our items CSV template file</p>
                                    <a href="#"><i class="mdi mdi-folder-download"></i> Download template file</a>

                                </div>
                            </div>

                            <div class="col-lg-6 mb-3">
                                <div class="boxShadow whiteBg  text-center h-100">
                                    <div class="hexagon shadow_orange">
                                        <div class="hex-mid hexagon-warning bold">
                                            2
                                        </div>
                                    </div>
                                    <p>Copy your items into the template
                                    </p>
                                    <p class="h1"><i class="mdi mdi-content-duplicate"></i></p>

                                </div>
                            </div>
                            <div class="col-lg-12">
                                <div class="card-body boxShadow whiteBg mb-3 text-center">

                                    <p>Import the updated template file
                                    </p>

                                    <input name="file1" type="file" class="dropify" data-height="100" />
                                </div>
                            </div>
                        </div>




                    </div>
                    <div class="modal-footer">
                        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
                        <button type="button" class="btn btn-primary submitDate shadow_blue">Continue</button>
                    </div>
                </div>
            </div>
        </div>


        <script src="../assets/js/dropify.js?<?= rand(110000) / 7?>"></script>

        
<script>

$(function() {

           $('.dropify').dropify();

        });

    </script>