booking/assets/pug/pages/theme/dropzone.pug
2025-03-24 22:58:00 +03:00

76 lines
3.6 KiB
Plaintext

- var theme_customizer = true;
- var tooltip = true;
- var dropzone = true;
doctype html
html(lang='en')
include ../../components/header-files
body
include ../../components/loader
// page-wrapper Start
#pageWrapper.page-wrapper
include ../../components/header
// Page Body Start
.page-body-wrapper.horizontal-menu
include ../../components/sidebar
.page-body
.container-fluid
.page-header
.row
.col-sm-6
h3
| Dropzone
ol.breadcrumb
li.breadcrumb-item
a(href='index.html')
| Home
li.breadcrumb-item Advance
li.breadcrumb-item.active Dropzone
.col-sm-6
include ../../components/bookmark
// Container-fluid starts
.container-fluid
.row
.col-sm-12
.card
.card-header.pb-0
h5 Single File Upload
.card-body
form#singleFileUpload.dropzone.digits(action='/upload.php')
.dz-message.needsclick
i.icon-cloud-up
h6 Drop files here or click to upload.
span.note.needsclick
| (This is just a demo dropzone. Selected files are
strong not
| actually uploaded.)
.col-sm-12
.card
.card-header.pb-0
h5 Multi File Upload
.card-body
form#multiFileUpload.dropzone.dropzone-primary(action='/upload.php')
.dz-message.needsclick
i.icon-cloud-up
h6 Drop files here or click to upload.
span.note.needsclick
| (This is just a demo dropzone. Selected files are
strong not
| actually uploaded.)
.col-sm-12
.card
.card-header.pb-0
h5 File Type Validation
.card-body
form#fileTypeValidation.dropzone.dropzone-info(action='/upload.php')
.dz-message.needsclick
i.icon-cloud-up
h6 Drop files here or click to upload.
span.note.needsclick
| (This is just a demo dropzone. Selected files are
strong not
| actually uploaded.)
// Container-fluid Ends
include ../../components/footer
include ../../components/footer-files