templates/form-uploads.html.twig line 1

Open in your IDE?
  1. {{ include('partials/main.html.twig') }}
  2.     <head>
  3.         
  4.         {{ include('partials/title-meta.html.twig', {title: 'File Upload'}) }}
  5.         <!-- dropzone css -->
  6.         <link href="/libs/dropzone/dist/min/dropzone.min.css" rel="stylesheet" type="text/css" />
  7.         {{ include('partials/head-css.html.twig') }}
  8.     </head>
  9.     {{ include('partials/body.html.twig') }}
  10.         <!-- Begin page -->
  11.         <div id="layout-wrapper">
  12.             {{ include('partials/menu.html.twig') }}
  13.             <!-- ============================================================== -->
  14.             <!-- Start right Content here -->
  15.             <!-- ============================================================== -->
  16.             <div class="main-content">
  17.                 <div class="page-content">
  18.                     <div class="container-fluid">
  19.                         {{ include('partials/page-title.html.twig', {pagetitle: 'Forms', title: 'File Upload'}) }}
  20.                         <div class="row">
  21.                             <div class="col-12">
  22.                                 <div class="card">
  23.                                     <div class="card-header">
  24.                                         <h4 class="card-title">Dropzone</h4>
  25.                                         <p class="card-title-desc">DropzoneJS is an open source library
  26.                                             that provides drag’n’drop file uploads with image previews.
  27.                                         </p>
  28.                                     </div>
  29.                                     <div class="card-body">
  30.     
  31.                                         <div>
  32.                                             <form action="#" class="dropzone">
  33.                                                 <div class="fallback">
  34.                                                     <input name="file" type="file" multiple="multiple">
  35.                                                 </div>
  36.                                                 <div class="dz-message needsclick">
  37.                                                     <div class="mb-3">
  38.                                                         <i class="display-4 text-muted bx bx-cloud-upload"></i>
  39.                                                     </div>
  40.     
  41.                                                     <h5>Drop files here or click to upload.</h5>
  42.                                                 </div>
  43.                                             </form>
  44.                                         </div>
  45.     
  46.                                         <div class="text-center mt-4">
  47.                                             <button type="button" class="btn btn-primary waves-effect waves-light">Send
  48.                                                 Files</button>
  49.                                         </div>
  50.                                     </div>
  51.                                 </div>
  52.                             </div> <!-- end col -->
  53.                         </div> <!-- end row -->
  54.                         
  55.                     </div> <!-- container-fluid -->
  56.                 </div>
  57.                 <!-- End Page-content -->
  58.                 
  59.                 {{ include('partials/footer.html.twig') }}
  60.             </div>
  61.             <!-- end main content-->
  62.         </div>
  63.         <!-- END layout-wrapper -->
  64.         {{ include('partials/right-sidebar.html.twig') }}
  65.         {{ include('partials/vendor-scripts.html.twig') }}
  66.         <!-- dropzone js -->
  67.         <script src="/libs/dropzone/dist/min/dropzone.min.js"></script>
  68.         <script src="/js/app.js"></script>
  69.     </body>
  70. </html>