aboutsummaryrefslogtreecommitdiff
path: root/app/views/upload.view.php
blob: f504d5bf2eeabe0b33cc53e3ba12755e5fced7b9 (plain)
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
<?php $title = 'Upload Files - ' ?>

<?php require __DIR__ . '/partials/header.php';?>

<body>

<?php require __DIR__ . '/partials/navigator.php';?>

  <main>
    <article>
      <upload-page>
        <h1>Upload Files</h1>
        <div id="file-upload-area"></div>
      </upload-page>
    </article>
  </main>

  <link href="/css/uppy.min.css" rel="stylesheet">

  <script src="/js/uppy.min.js"></script>

  <script>
   var uppy = Uppy.Core()
    .use(Uppy.Url, { companionUrl: 'https://www.thedroneely.com/' })
    .use(Uppy.Webcam, {})
    .use(Uppy.Dashboard, { inline: true, target: '#file-upload-area',  plugins: ['Url', 'Webcam'] })
    .use(Uppy.XHRUpload, {endpoint: '/upload/', formdata: true, fieldName: 'upload' })
  </script>

<?php require __DIR__ . '/partials/footer.php';?>

</body>
</html>