templates/form-uploads.html.twig line 1

Open in your IDE?
  1. {{ include('partials/main.html.twig') }}
    
        <head>
            
            {{ include('partials/title-meta.html.twig', {title: 'File Upload'}) }}
    
            <!-- dropzone css -->
            <link href="/libs/dropzone/dist/min/dropzone.min.css" rel="stylesheet" type="text/css" />
    
            {{ include('partials/head-css.html.twig') }}
    
        </head>
    
        {{ include('partials/body.html.twig') }}
    
            <!-- Begin page -->
            <div id="layout-wrapper">
    
                {{ include('partials/menu.html.twig') }}
    
                <!-- ============================================================== -->
                <!-- Start right Content here -->
                <!-- ============================================================== -->
                <div class="main-content">
    
                    <div class="page-content">
                        <div class="container-fluid">
    
                            {{ include('partials/page-title.html.twig', {pagetitle: 'Forms', title: 'File Upload'}) }}
    
                            <div class="row">
                                <div class="col-12">
                                    <div class="card">
                                        <div class="card-header">
                                            <h4 class="card-title">Dropzone</h4>
                                            <p class="card-title-desc">DropzoneJS is an open source library
                                                that provides drag’n’drop file uploads with image previews.
                                            </p>
                                        </div>
                                        <div class="card-body">
        
                                            <div>
                                                <form action="#" class="dropzone">
                                                    <div class="fallback">
                                                        <input name="file" type="file" multiple="multiple">
                                                    </div>
                                                    <div class="dz-message needsclick">
                                                        <div class="mb-3">
                                                            <i class="display-4 text-muted bx bx-cloud-upload"></i>
                                                        </div>
        
                                                        <h5>Drop files here or click to upload.</h5>
                                                    </div>
                                                </form>
                                            </div>
        
                                            <div class="text-center mt-4">
                                                <button type="button" class="btn btn-primary waves-effect waves-light">Send
                                                    Files</button>
                                            </div>
                                        </div>
                                    </div>
                                </div> <!-- end col -->
                            </div> <!-- end row -->
                            
                        </div> <!-- container-fluid -->
                    </div>
                    <!-- End Page-content -->
    
                    
                    {{ include('partials/footer.html.twig') }}
                </div>
                <!-- end main content-->
    
            </div>
            <!-- END layout-wrapper -->
    
            {{ include('partials/right-sidebar.html.twig') }}
    
            {{ include('partials/vendor-scripts.html.twig') }}
    
            <!-- dropzone js -->
            <script src="/libs/dropzone/dist/min/dropzone.min.js"></script>
    
            <script src="/js/app.js"></script>
    
        </body>
    </html>