gitextract_zy8zlmoi/ ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── documentation/ │ ├── assets/ │ │ ├── custom.js │ │ ├── run_prettify.css │ │ ├── run_prettify.js │ │ └── style.css │ └── index.html └── src/ ├── authenticate.php ├── bulk_action.php ├── config/ │ ├── config.php │ └── environment.php ├── dist/ │ ├── css/ │ │ ├── adminlte.css │ │ ├── alt/ │ │ │ ├── adminlte.components.css │ │ │ ├── adminlte.core.css │ │ │ ├── adminlte.extra-components.css │ │ │ ├── adminlte.pages.css │ │ │ └── adminlte.plugins.css │ │ └── custom.css │ └── js/ │ ├── adminlte.js │ └── custom.js ├── dynamic_qrcode.php ├── dynamic_qrcodes.php ├── forms/ │ ├── filters.php │ ├── form_dynamic_add.php │ ├── form_dynamic_edit.php │ ├── form_static_add.php │ ├── form_static_edit.php │ ├── form_users.php │ ├── logo.php │ ├── qrcode_options.php │ ├── static/ │ │ ├── 2fa.php │ │ ├── bitcoin.php │ │ ├── bookmark.php │ │ ├── country-code.html │ │ ├── email.php │ │ ├── event.php │ │ ├── location.php │ │ ├── paypal.php │ │ ├── phone.php │ │ ├── skype.php │ │ ├── sms.php │ │ ├── text.php │ │ ├── timezones.html │ │ ├── vcard.php │ │ ├── whatsapp.php │ │ └── wifi.php │ ├── table_dynamic.php │ ├── table_static.php │ └── table_users.php ├── helpers/ │ └── helpers.php ├── includes/ │ ├── auth_validate.php │ ├── flash_messages.php │ ├── footer.php │ ├── head.php │ ├── navbar.php │ ├── search_order.php │ └── sidebar.php ├── index.php ├── lib/ │ ├── DynamicQrcode/ │ │ └── DynamicQrcode.php │ ├── ICS/ │ │ └── ICS.php │ ├── MysqliDb/ │ │ └── MysqliDb.php │ ├── Qrcode/ │ │ ├── Qrcode-intchil.php │ │ └── Qrcode.php │ ├── StaticQrcode/ │ │ └── StaticQrcode.php │ ├── Users/ │ │ └── Users.php │ └── vCard/ │ └── vCard.php ├── login.php ├── logout.php ├── plugins/ │ ├── bootstrap/ │ │ └── js/ │ │ ├── bootstrap.bundle.js │ │ └── bootstrap.js │ ├── bootstrap-colorpicker/ │ │ ├── css/ │ │ │ └── bootstrap-colorpicker.css │ │ └── js/ │ │ └── bootstrap-colorpicker.js │ ├── chart.js/ │ │ ├── Chart.bundle.js │ │ ├── Chart.css │ │ └── Chart.js │ ├── daterangepicker/ │ │ ├── bower.json │ │ ├── daterangepicker.css │ │ ├── daterangepicker.js │ │ ├── example/ │ │ │ ├── amd/ │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ └── require.js │ │ │ └── browserify/ │ │ │ ├── README.md │ │ │ ├── bundle.js │ │ │ ├── index.html │ │ │ └── main.js │ │ ├── package.js │ │ ├── website/ │ │ │ ├── index.html │ │ │ ├── website.css │ │ │ └── website.js │ │ ├── website.css │ │ └── website.js │ ├── fontawesome-free/ │ │ └── css/ │ │ ├── all.css │ │ ├── brands.css │ │ ├── fontawesome.css │ │ ├── regular.css │ │ ├── solid.css │ │ ├── svg-with-js.css │ │ └── v4-shims.css │ ├── jquery/ │ │ ├── core.js │ │ ├── jquery.js │ │ └── jquery.slim.js │ ├── jquery-ui/ │ │ ├── AUTHORS.txt │ │ ├── LICENSE.txt │ │ ├── external/ │ │ │ └── jquery/ │ │ │ └── jquery.js │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.structure.css │ │ └── jquery-ui.theme.css │ ├── jquery-validation/ │ │ ├── additional-methods.js │ │ └── jquery.validate.js │ ├── moment/ │ │ ├── locales.js │ │ └── moment-with-locales.js │ └── overlayScrollbars/ │ ├── css/ │ │ └── OverlayScrollbars.css │ └── js/ │ ├── OverlayScrollbars.js │ └── jquery.overlayScrollbars.js ├── read.php ├── saved_qrcode/ │ └── zip/ │ └── .gitkeep ├── static_qrcode.php ├── static_qrcodes.php ├── upgrade/ │ └── upgrade.php ├── user.php └── users.php