26 lines
No EOL
949 B
Cheetah
26 lines
No EOL
949 B
Cheetah
{{template "top" .}}
|
||
<link href="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.css" rel="stylesheet">
|
||
<div class="container" style="margin-top: 100px;">
|
||
<div class="col-12">
|
||
<h1>Dashboard</h1>
|
||
<div id="drag-drop-area"></div>
|
||
</div>
|
||
</div>
|
||
|
||
<script src="https://releases.transloadit.com/uppy/v2.3.1/uppy.min.js"></script>
|
||
<script>
|
||
const { Instagram } = Uppy
|
||
const { Dashboard } = Uppy
|
||
var uppy = new Uppy.Core()
|
||
.use(Uppy.Dashboard, {
|
||
inline: true,
|
||
target: '#drag-drop-area'
|
||
})
|
||
.use(Uppy.XHRUpload, {endpoint: '/file/upload?id={{.id}}'})
|
||
//.use(Instagram, { target: Dashboard, companionUrl: 'https://companion.uppy.io' })
|
||
|
||
uppy.on('complete', (result) => {
|
||
console.log('Upload complete! We’ve uploaded these files:', result.successful)
|
||
})
|
||
</script>
|
||
{{template "bottom" .}} |