Dashboard
14 |15 |
├── .env.example
├── .gitattributes
├── .gitignore
├── LICENSE
├── README.md
├── app
├── Admin.php
├── Console
│ └── Kernel.php
├── Exceptions
│ └── Handler.php
├── Helpers
│ └── ItemsHelper.php
├── Http
│ ├── Controllers
│ │ ├── AdminController.php
│ │ ├── Auth
│ │ │ ├── AdminLoginController.php
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── RegisterController.php
│ │ │ └── ResetPasswordController.php
│ │ ├── Controller.php
│ │ ├── FrontendController.php
│ │ ├── HomeController.php
│ │ ├── ItemsController.php
│ │ ├── SearchController.php
│ │ └── UserController.php
│ ├── Kernel.php
│ └── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ ├── TrimStrings.php
│ │ └── VerifyCsrfToken.php
├── Item.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
└── User.php
├── artisan
├── bootstrap
├── app.php
├── autoload.php
└── cache
│ └── .gitignore
├── composer.json
├── composer.lock
├── config
├── app.php
├── auth.php
├── broadcasting.php
├── cache.php
├── database.php
├── filesystems.php
├── mail.php
├── queue.php
├── services.php
├── session.php
└── view.php
├── database
├── .gitignore
├── factories
│ └── ModelFactory.php
├── migrations
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2017_09_11_205002_create_admins_table.php
│ └── 2017_09_11_211121_create_items_table.php
└── seeds
│ └── DatabaseSeeder.php
├── package.json
├── phpunit.xml
├── public
├── .htaccess
├── assets
│ ├── css
│ │ ├── bootstrap.min.css
│ │ ├── elegant-icons.min.css
│ │ ├── flexslider.min.css
│ │ ├── lightbox.min.css
│ │ ├── line-icons.min.css
│ │ ├── theme-aquatica.css
│ │ ├── theme-aspirin.css
│ │ ├── theme-blues.css
│ │ ├── theme-buddha.css
│ │ ├── theme-cobalt.css
│ │ ├── theme-rocklobster.css
│ │ ├── theme-tronic.css
│ │ └── theme.css
│ ├── font-awesome
│ │ ├── css
│ │ │ ├── font-awesome.css
│ │ │ └── font-awesome.min.css
│ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ └── fontawesome-webfont.woff2
│ ├── fonts
│ │ ├── ElegantIcons.eot
│ │ ├── ElegantIcons.svg
│ │ ├── ElegantIcons.ttf
│ │ ├── ElegantIcons.woff
│ │ ├── ElegantIconsd41d.eot
│ │ ├── et-line.eot
│ │ ├── et-line.svg
│ │ ├── et-line.ttf
│ │ ├── et-line.woff
│ │ ├── et-lined41d.eot
│ │ ├── glyphicons-halflings-regular-2.html
│ │ ├── glyphicons-halflings-regular-3.html
│ │ ├── glyphicons-halflings-regular-4.html
│ │ ├── glyphicons-halflings-regular.html
│ │ └── glyphicons-halflings-regulard41d.html
│ ├── img
│ │ ├── blog-masonry-1.jpg
│ │ ├── blog-masonry-2.jpg
│ │ ├── board-4.jpeg
│ │ ├── bottom1.jpg
│ │ ├── grey-bg.jpg
│ │ ├── header2.jpg
│ │ ├── hero10.jpg
│ │ ├── hero20.jpg
│ │ ├── hero23.jpg
│ │ ├── hero3.jpg
│ │ ├── hero6.jpg
│ │ ├── lightbox
│ │ │ ├── close.png
│ │ │ ├── loading.gif
│ │ │ ├── next.png
│ │ │ └── prev.png
│ │ ├── logo-big.jpg
│ │ ├── logo-dark.png
│ │ ├── logo-light.png
│ │ ├── logo-small.jpg
│ │ ├── oaunoticeboard.jpg
│ │ ├── project4.jpg
│ │ └── team-small-1.png
│ └── js
│ │ ├── bootstrap.min.js
│ │ ├── isotope.min.js
│ │ ├── jquery.countdown.min.js
│ │ ├── jquery.flexslider-min.js
│ │ ├── jquery.min.js
│ │ ├── jquery.plugin.min.js
│ │ ├── lightbox.min.js
│ │ ├── modernizr-2.6.2-respond-1.1.0.min.js
│ │ ├── scripts.js
│ │ ├── scrollReveal.min.js
│ │ ├── skrollr.min.js
│ │ ├── smooth-scroll.min.js
│ │ ├── spectragram.min.js
│ │ └── twitterFetcher_v10_min.js
├── css
│ └── app.css
├── dashboard
│ ├── assets
│ │ ├── css
│ │ │ └── site.min3f0d.css
│ │ ├── examples
│ │ │ ├── css
│ │ │ │ ├── advanced
│ │ │ │ │ ├── alertify.min3f0d.css
│ │ │ │ │ ├── animation.min3f0d.css
│ │ │ │ │ ├── highlight.min3f0d.css
│ │ │ │ │ ├── lightbox.min3f0d.css
│ │ │ │ │ ├── masonry.min3f0d.css
│ │ │ │ │ ├── rating.min3f0d.css
│ │ │ │ │ ├── scrollable.min3f0d.css
│ │ │ │ │ └── toastr.min3f0d.css
│ │ │ │ ├── apps
│ │ │ │ │ ├── calendar.min3f0d.css
│ │ │ │ │ ├── contacts.min3f0d.css
│ │ │ │ │ ├── documents.min3f0d.css
│ │ │ │ │ ├── forum.min3f0d.css
│ │ │ │ │ ├── location.min3f0d.css
│ │ │ │ │ ├── mailbox.min3f0d.css
│ │ │ │ │ ├── media.min3f0d.css
│ │ │ │ │ ├── message.min3f0d.css
│ │ │ │ │ ├── notebook.min3f0d.css
│ │ │ │ │ ├── projects.min3f0d.css
│ │ │ │ │ ├── taskboard.min3f0d.css
│ │ │ │ │ └── work.min3f0d.css
│ │ │ │ ├── charts
│ │ │ │ │ ├── chartist.min3f0d.css
│ │ │ │ │ ├── chartjs.min3f0d.css
│ │ │ │ │ ├── flot.min3f0d.css
│ │ │ │ │ ├── pie-progress.min3f0d.css
│ │ │ │ │ └── sparkline.min3f0d.css
│ │ │ │ ├── dashboard
│ │ │ │ │ ├── analytics.min3f0d.css
│ │ │ │ │ ├── ecommerce.min3f0d.css
│ │ │ │ │ ├── team.min3f0d.css
│ │ │ │ │ ├── v1.min3f0d.css
│ │ │ │ │ └── v2.min3f0d.css
│ │ │ │ ├── forms
│ │ │ │ │ ├── advanced.min3f0d.css
│ │ │ │ │ ├── image-cropping.min3f0d.css
│ │ │ │ │ ├── layouts.min3f0d.css
│ │ │ │ │ ├── masks.min3f0d.css
│ │ │ │ │ └── validation.min3f0d.css
│ │ │ │ ├── layouts
│ │ │ │ │ ├── headers.min3f0d.css
│ │ │ │ │ └── panel-transition.min3f0d.css
│ │ │ │ ├── pages
│ │ │ │ │ ├── code-editor.min3f0d.css
│ │ │ │ │ ├── email.min3f0d.css
│ │ │ │ │ ├── errors.min3f0d.css
│ │ │ │ │ ├── forgot-password.min3f0d.css
│ │ │ │ │ ├── gallery-grid.min3f0d.css
│ │ │ │ │ ├── gallery.min3f0d.css
│ │ │ │ │ ├── invoice.min3f0d.css
│ │ │ │ │ ├── lockscreen.min3f0d.css
│ │ │ │ │ ├── login-v2.min3f0d.css
│ │ │ │ │ ├── login-v3.min3f0d.css
│ │ │ │ │ ├── login.min3f0d.css
│ │ │ │ │ ├── maintenance.min3f0d.css
│ │ │ │ │ ├── map.min3f0d.css
│ │ │ │ │ ├── profile.min3f0d.css
│ │ │ │ │ ├── register-v2.min3f0d.css
│ │ │ │ │ ├── register-v3.min3f0d.css
│ │ │ │ │ ├── register.min3f0d.css
│ │ │ │ │ ├── search-result.min3f0d.css
│ │ │ │ │ ├── site-map.min3f0d.css
│ │ │ │ │ └── user.min3f0d.css
│ │ │ │ ├── structure
│ │ │ │ │ ├── alerts.min3f0d.css
│ │ │ │ │ ├── breadcrumbs.min3f0d.css
│ │ │ │ │ ├── chat.min3f0d.css
│ │ │ │ │ ├── navbars.min3f0d.css
│ │ │ │ │ ├── pagination.min3f0d.css
│ │ │ │ │ ├── ribbon.min3f0d.css
│ │ │ │ │ ├── testimonials.min3f0d.css
│ │ │ │ │ └── timeline.min3f0d.css
│ │ │ │ ├── tables
│ │ │ │ │ ├── datatable.min3f0d.css
│ │ │ │ │ └── jsgrid.min3f0d.css
│ │ │ │ ├── uikit
│ │ │ │ │ ├── badges-labels.min3f0d.css
│ │ │ │ │ ├── buttons.min3f0d.css
│ │ │ │ │ ├── carousel.min3f0d.css
│ │ │ │ │ ├── colors.min3f0d.css
│ │ │ │ │ ├── dropdowns.min3f0d.css
│ │ │ │ │ ├── icon.min3f0d.css
│ │ │ │ │ ├── icons.min3f0d.css
│ │ │ │ │ ├── modals.min3f0d.css
│ │ │ │ │ ├── panel-portlets.min3f0d.css
│ │ │ │ │ ├── progress-bars.min3f0d.css
│ │ │ │ │ └── utilities.min3f0d.css
│ │ │ │ └── widgets
│ │ │ │ │ ├── chart.min3f0d.css
│ │ │ │ │ ├── data.min3f0d.css
│ │ │ │ │ ├── social.min3f0d.css
│ │ │ │ │ ├── statistics.min3f0d.css
│ │ │ │ │ └── weather.min3f0d.css
│ │ │ ├── images
│ │ │ │ ├── browser
│ │ │ │ │ ├── chrome-logo.png
│ │ │ │ │ ├── firefox-logo.png
│ │ │ │ │ ├── internet-logo.png
│ │ │ │ │ ├── opera-logo.png
│ │ │ │ │ └── safari-logo.png
│ │ │ │ ├── country
│ │ │ │ │ ├── australia-icon.png
│ │ │ │ │ ├── canada-icon.png
│ │ │ │ │ ├── china-icon.png
│ │ │ │ │ ├── germany-icon.png
│ │ │ │ │ ├── uk-icon.png
│ │ │ │ │ └── usa-icon.png
│ │ │ │ ├── navbar
│ │ │ │ │ ├── fixed-to-bottom.png
│ │ │ │ │ └── fixed-to-top.png
│ │ │ │ └── products
│ │ │ │ │ ├── applewatch.png
│ │ │ │ │ ├── imac.png
│ │ │ │ │ ├── iphone.png
│ │ │ │ │ └── macmouse.png
│ │ │ └── js
│ │ │ │ ├── advanced
│ │ │ │ ├── animation.min.js
│ │ │ │ ├── bootbox-sweetalert.min.js
│ │ │ │ ├── context-menu.min.js
│ │ │ │ ├── highlight.min.js
│ │ │ │ ├── lightbox.min.js
│ │ │ │ ├── maps-google.min.js
│ │ │ │ ├── scrollable.min.js
│ │ │ │ └── treeview.min.js
│ │ │ │ ├── apps
│ │ │ │ ├── calendar.min.js
│ │ │ │ ├── contacts.min.js
│ │ │ │ ├── documents.min.js
│ │ │ │ ├── forum.min.js
│ │ │ │ ├── location.min.js
│ │ │ │ ├── mailbox.min.js
│ │ │ │ ├── media.min.js
│ │ │ │ ├── message.min.js
│ │ │ │ ├── notebook.min.js
│ │ │ │ ├── projects.min.js
│ │ │ │ ├── taskboard.min.js
│ │ │ │ └── work.min.js
│ │ │ │ ├── charts
│ │ │ │ ├── c3.min.js
│ │ │ │ ├── chartist.min.js
│ │ │ │ ├── chartjs.min.js
│ │ │ │ ├── flot.min.js
│ │ │ │ ├── gauges.min.js
│ │ │ │ ├── morris.min.js
│ │ │ │ ├── peity.min.js
│ │ │ │ ├── pie-progress.min.js
│ │ │ │ ├── rickshaw.min.js
│ │ │ │ └── sparkline.min.js
│ │ │ │ ├── dashboard
│ │ │ │ ├── analytics.min.js
│ │ │ │ ├── ecommerce.min.js
│ │ │ │ ├── team.min.js
│ │ │ │ ├── v1.min.js
│ │ │ │ └── v2.min.js
│ │ │ │ ├── forms
│ │ │ │ ├── advanced.min.js
│ │ │ │ ├── editable.min.js
│ │ │ │ ├── editor-summernote.min.js
│ │ │ │ ├── image-cropping.min.js
│ │ │ │ ├── uploads.min.js
│ │ │ │ ├── validation.min.js
│ │ │ │ └── wizard.min.js
│ │ │ │ ├── layouts
│ │ │ │ └── panel-transition.min.js
│ │ │ │ ├── pages
│ │ │ │ ├── code-editor.min.js
│ │ │ │ ├── faq.min.js
│ │ │ │ ├── gallery.min.js
│ │ │ │ ├── map-google.min.js
│ │ │ │ └── map-vector.min.js
│ │ │ │ ├── structure
│ │ │ │ └── timeline.min.js
│ │ │ │ ├── tables
│ │ │ │ ├── bootstrap.min.js
│ │ │ │ ├── datatable.min.js
│ │ │ │ ├── editable.min.js
│ │ │ │ ├── footable.min.js
│ │ │ │ ├── jsgrid-db.min.js
│ │ │ │ └── jsgrid.min.js
│ │ │ │ ├── uikit
│ │ │ │ ├── carousel.min.js
│ │ │ │ ├── icon.min.js
│ │ │ │ ├── panel-actions.min.js
│ │ │ │ ├── panel-structure.min.js
│ │ │ │ ├── progress-bars.min.js
│ │ │ │ └── tooltip-popover.min.js
│ │ │ │ └── widgets
│ │ │ │ ├── chart.min.js
│ │ │ │ └── weather.min.js
│ │ ├── images
│ │ │ ├── apple-touch-icon.png
│ │ │ ├── favicon.ico
│ │ │ ├── logo-blue.png
│ │ │ ├── logo-blue@2x.png
│ │ │ ├── logo.png
│ │ │ └── logo@2x.png
│ │ └── js
│ │ │ ├── app.min.js
│ │ │ ├── configs
│ │ │ └── config-tour.min.js
│ │ │ ├── sections
│ │ │ ├── gridmenu.min.js
│ │ │ ├── menu.min.js
│ │ │ ├── menubar.min.js
│ │ │ ├── sidebar.min.js
│ │ │ └── skintools.min.js
│ │ │ └── site.min.js
│ ├── css
│ │ ├── bootstrap-extend.min3f0d.css
│ │ ├── bootstrap.min3f0d.css
│ │ └── skintools.min3f0d.css
│ ├── fonts
│ │ ├── 7-stroke
│ │ │ ├── 7-stroke.min3f0d.css
│ │ │ ├── Pe-icon-7-strokebb1d.eot
│ │ │ ├── Pe-icon-7-strokebb1d.svg
│ │ │ ├── Pe-icon-7-strokebb1d.ttf
│ │ │ ├── Pe-icon-7-strokebb1d.woff
│ │ │ └── Pe-icon-7-stroked41d.eot
│ │ ├── brand-icons
│ │ │ ├── brand-icons.min3f0d.css
│ │ │ ├── brand-iconsa29e.eot
│ │ │ ├── brand-iconsa29e.svg
│ │ │ ├── brand-iconsa29e.ttf
│ │ │ ├── brand-iconsa29e.woff
│ │ │ ├── brand-iconsa29e.woff2
│ │ │ └── brand-iconsd41d.eot
│ │ ├── font-awesome
│ │ │ ├── font-awesome.min3f0d.css
│ │ │ ├── fontawesome-webfont914c.eot
│ │ │ ├── fontawesome-webfont914c.svg
│ │ │ ├── fontawesome-webfont914c.ttf
│ │ │ ├── fontawesome-webfont914c.woff
│ │ │ ├── fontawesome-webfont914c.woff2
│ │ │ └── fontawesome-webfontd41d.eot
│ │ ├── glyphicons
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ ├── glyphicons-halflings-regular.woff2
│ │ │ ├── glyphicons-halflings-regulard41d.eot
│ │ │ └── glyphicons.min3f0d.css
│ │ ├── ionicons
│ │ │ ├── ionicons.min3f0d.css
│ │ │ ├── ionicons790f.eot
│ │ │ ├── ionicons790f.svg
│ │ │ ├── ionicons790f.ttf
│ │ │ └── ionicons790f.woff
│ │ ├── material-design
│ │ │ ├── Material-Design-Iconic-Fontd1f1.ttf
│ │ │ ├── Material-Design-Iconic-Fontd1f1.woff
│ │ │ ├── Material-Design-Iconic-Fontd1f1.woff2
│ │ │ └── material-design.min3f0d.css
│ │ ├── mfglabs
│ │ │ ├── mfglabs.min3f0d.css
│ │ │ ├── mfglabsiconset-webfont.eot
│ │ │ ├── mfglabsiconset-webfont.svg
│ │ │ ├── mfglabsiconset-webfont.ttf
│ │ │ ├── mfglabsiconset-webfont.woff
│ │ │ └── mfglabsiconset-webfontd41d.eot
│ │ ├── octicons
│ │ │ ├── octicons.min3f0d.css
│ │ │ ├── octicons9f24.eot
│ │ │ ├── octicons9f24.svg
│ │ │ ├── octicons9f24.ttf
│ │ │ ├── octicons9f24.woff
│ │ │ └── octiconsd41d.eot
│ │ ├── open-iconic
│ │ │ ├── open-iconic.eot
│ │ │ ├── open-iconic.min3f0d.css
│ │ │ ├── open-iconic.otf
│ │ │ ├── open-iconic.svg
│ │ │ ├── open-iconic.ttf
│ │ │ ├── open-iconic.woff
│ │ │ └── open-iconicd41d.eot
│ │ ├── themify
│ │ │ ├── themify.min3f0d.css
│ │ │ ├── themify9f24.eot
│ │ │ ├── themify9f24.svg
│ │ │ ├── themify9f24.ttf
│ │ │ ├── themify9f24.woff
│ │ │ └── themifyd41d.eot
│ │ ├── weather-icons
│ │ │ ├── weather-icons.min3f0d.css
│ │ │ ├── weathericons-regular-webfont.eot
│ │ │ ├── weathericons-regular-webfont.svg
│ │ │ ├── weathericons-regular-webfont.ttf
│ │ │ ├── weathericons-regular-webfont.woff
│ │ │ └── weathericons-regular-webfontd41d.eot
│ │ └── web-icons
│ │ │ ├── web-icons.min3f0d.css
│ │ │ ├── web-iconsd41d.eot
│ │ │ ├── web-iconsd622.eot
│ │ │ ├── web-iconsd622.svg
│ │ │ ├── web-iconsd622.ttf
│ │ │ ├── web-iconsd622.woff
│ │ │ └── web-iconsd622.woff2
│ └── js
│ │ ├── components
│ │ ├── ace.min.js
│ │ ├── alertify-js.min.js
│ │ ├── animate-list.min.js
│ │ ├── animsition.min.js
│ │ ├── asbreadcrumbs.min.js
│ │ ├── ascolorpicker.min.js
│ │ ├── aspaginator.min.js
│ │ ├── aspieprogress.min.js
│ │ ├── asprogress.min.js
│ │ ├── asrange.min.js
│ │ ├── asscrollable.min.js
│ │ ├── asspinner.min.js
│ │ ├── bootbox.min.js
│ │ ├── bootstrap-datepicker.min.js
│ │ ├── bootstrap-maxlength.min.js
│ │ ├── bootstrap-select.min.js
│ │ ├── bootstrap-sweetalert.min.js
│ │ ├── bootstrap-tagsinput.min.js
│ │ ├── bootstrap-tokenfield.min.js
│ │ ├── bootstrap-touchspin.min.js
│ │ ├── bootstrap-treeview.min.js
│ │ ├── buttons.min.js
│ │ ├── card.min.js
│ │ ├── clockpicker.min.js
│ │ ├── datatables.min.js
│ │ ├── datepair-js.min.js
│ │ ├── dropify.min.js
│ │ ├── editable-table.min.js
│ │ ├── filterable.min.js
│ │ ├── formatter-js.min.js
│ │ ├── gauge-js.min.js
│ │ ├── gmaps.min.js
│ │ ├── gridstack.min.js
│ │ ├── highlight-js.min.js
│ │ ├── html5sortable.min.js
│ │ ├── icheck.min.js
│ │ ├── input-group-file.min.js
│ │ ├── jquery-appear.min.js
│ │ ├── jquery-floatthead.min.js
│ │ ├── jquery-knob.min.js
│ │ ├── jquery-labelauty.min.js
│ │ ├── jquery-placeholder.min.js
│ │ ├── jquery-strength.min.js
│ │ ├── jquery-wizard.min.js
│ │ ├── jt-timepicker.min.js
│ │ ├── jvectormap.min.js
│ │ ├── ladda-bootstrap.min.js
│ │ ├── magnific-popup.min.js
│ │ ├── masonry.min.js
│ │ ├── matchheight.min.js
│ │ ├── material.min.js
│ │ ├── multi-select.min.js
│ │ ├── nestable.min.js
│ │ ├── nprogress.min.js
│ │ ├── owl-carousel.min.js
│ │ ├── panel.min.js
│ │ ├── peity.min.js
│ │ ├── plyr.min.js
│ │ ├── raty.min.js
│ │ ├── select2.min.js
│ │ ├── selectable.min.js
│ │ ├── slidepanel.min.js
│ │ ├── summernote.min.js
│ │ ├── switchery.min.js
│ │ ├── table.min.js
│ │ ├── tabs.min.js
│ │ ├── tasklist.min.js
│ │ ├── toastr.min.js
│ │ ├── toolbar.min.js
│ │ └── webui-popover.min.js
│ │ ├── configs
│ │ └── config-colors.min.js
│ │ ├── core.min.js
│ │ └── plugins
│ │ ├── action-btn.min.js
│ │ ├── closeable-tabs.min.js
│ │ ├── responsive-tabs.min.js
│ │ ├── selectable.min.js
│ │ └── sticky-header.min.js
├── data
│ └── country-by-name.json
├── favicon.ico
├── index.php
├── js
│ ├── app.js
│ ├── lnf.js
│ └── tinymce
│ │ ├── jquery.tinymce.min.js
│ │ ├── langs
│ │ └── readme.md
│ │ ├── license.txt
│ │ ├── plugins
│ │ ├── advlist
│ │ │ └── plugin.min.js
│ │ ├── anchor
│ │ │ └── plugin.min.js
│ │ ├── autolink
│ │ │ └── plugin.min.js
│ │ ├── autoresize
│ │ │ └── plugin.min.js
│ │ ├── autosave
│ │ │ └── plugin.min.js
│ │ ├── bbcode
│ │ │ └── plugin.min.js
│ │ ├── charmap
│ │ │ └── plugin.min.js
│ │ ├── code
│ │ │ └── plugin.min.js
│ │ ├── codesample
│ │ │ ├── css
│ │ │ │ └── prism.css
│ │ │ └── plugin.min.js
│ │ ├── colorpicker
│ │ │ └── plugin.min.js
│ │ ├── contextmenu
│ │ │ └── plugin.min.js
│ │ ├── directionality
│ │ │ └── plugin.min.js
│ │ ├── emoticons
│ │ │ ├── img
│ │ │ │ ├── smiley-cool.gif
│ │ │ │ ├── smiley-cry.gif
│ │ │ │ ├── smiley-embarassed.gif
│ │ │ │ ├── smiley-foot-in-mouth.gif
│ │ │ │ ├── smiley-frown.gif
│ │ │ │ ├── smiley-innocent.gif
│ │ │ │ ├── smiley-kiss.gif
│ │ │ │ ├── smiley-laughing.gif
│ │ │ │ ├── smiley-money-mouth.gif
│ │ │ │ ├── smiley-sealed.gif
│ │ │ │ ├── smiley-smile.gif
│ │ │ │ ├── smiley-surprised.gif
│ │ │ │ ├── smiley-tongue-out.gif
│ │ │ │ ├── smiley-undecided.gif
│ │ │ │ ├── smiley-wink.gif
│ │ │ │ └── smiley-yell.gif
│ │ │ └── plugin.min.js
│ │ ├── fullpage
│ │ │ └── plugin.min.js
│ │ ├── fullscreen
│ │ │ └── plugin.min.js
│ │ ├── help
│ │ │ ├── img
│ │ │ │ └── logo.png
│ │ │ └── plugin.min.js
│ │ ├── hr
│ │ │ └── plugin.min.js
│ │ ├── image
│ │ │ └── plugin.min.js
│ │ ├── imagetools
│ │ │ └── plugin.min.js
│ │ ├── importcss
│ │ │ └── plugin.min.js
│ │ ├── insertdatetime
│ │ │ └── plugin.min.js
│ │ ├── legacyoutput
│ │ │ └── plugin.min.js
│ │ ├── link
│ │ │ └── plugin.min.js
│ │ ├── lists
│ │ │ └── plugin.min.js
│ │ ├── media
│ │ │ └── plugin.min.js
│ │ ├── nonbreaking
│ │ │ └── plugin.min.js
│ │ ├── noneditable
│ │ │ └── plugin.min.js
│ │ ├── pagebreak
│ │ │ └── plugin.min.js
│ │ ├── paste
│ │ │ └── plugin.min.js
│ │ ├── preview
│ │ │ └── plugin.min.js
│ │ ├── print
│ │ │ └── plugin.min.js
│ │ ├── save
│ │ │ └── plugin.min.js
│ │ ├── searchreplace
│ │ │ └── plugin.min.js
│ │ ├── spellchecker
│ │ │ └── plugin.min.js
│ │ ├── tabfocus
│ │ │ └── plugin.min.js
│ │ ├── table
│ │ │ └── plugin.min.js
│ │ ├── template
│ │ │ └── plugin.min.js
│ │ ├── textcolor
│ │ │ └── plugin.min.js
│ │ ├── textpattern
│ │ │ └── plugin.min.js
│ │ ├── toc
│ │ │ └── plugin.min.js
│ │ ├── visualblocks
│ │ │ ├── css
│ │ │ │ └── visualblocks.css
│ │ │ └── plugin.min.js
│ │ ├── visualchars
│ │ │ └── plugin.min.js
│ │ └── wordcount
│ │ │ └── plugin.min.js
│ │ ├── skins
│ │ └── lightgray
│ │ │ ├── content.inline.min.css
│ │ │ ├── content.min.css
│ │ │ ├── fonts
│ │ │ ├── tinymce-small.eot
│ │ │ ├── tinymce-small.svg
│ │ │ ├── tinymce-small.ttf
│ │ │ ├── tinymce-small.woff
│ │ │ ├── tinymce.eot
│ │ │ ├── tinymce.svg
│ │ │ ├── tinymce.ttf
│ │ │ └── tinymce.woff
│ │ │ ├── img
│ │ │ ├── anchor.gif
│ │ │ ├── loader.gif
│ │ │ ├── object.gif
│ │ │ └── trans.gif
│ │ │ └── skin.min.css
│ │ ├── themes
│ │ ├── inlite
│ │ │ └── theme.min.js
│ │ └── modern
│ │ │ └── theme.min.js
│ │ └── tinymce.min.js
├── robots.txt
└── web.config
├── resources
├── assets
│ ├── js
│ │ ├── app.js
│ │ ├── bootstrap.js
│ │ └── components
│ │ │ └── Example.vue
│ └── sass
│ │ ├── _variables.scss
│ │ └── app.scss
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
└── views
│ ├── auth
│ ├── login.blade.php
│ ├── passwords
│ │ ├── email.blade.php
│ │ └── reset.blade.php
│ └── register.blade.php
│ ├── home.blade.php
│ ├── itemdetails.blade.php
│ ├── layouts
│ ├── app.blade.php
│ └── user.blade.php
│ ├── partials
│ ├── message-block.blade.php
│ └── search.blade.php
│ ├── searchresults.blade.php
│ ├── user
│ ├── items
│ │ ├── edit.blade.php
│ │ ├── index.blade.php
│ │ └── new.blade.php
│ └── profile
│ │ ├── edit.blade.php
│ │ └── index.blade.php
│ └── welcome.blade.php
├── routes
├── api.php
├── channels.php
├── console.php
└── web.php
├── server.php
├── storage
├── app
│ ├── .gitignore
│ └── public
│ │ └── .gitignore
├── framework
│ ├── .gitignore
│ ├── cache
│ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ ├── testing
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
├── tests
├── CreatesApplication.php
├── Feature
│ └── ExampleTest.php
├── TestCase.php
└── Unit
│ └── ExampleTest.php
└── webpack.mix.js
/.env.example:
--------------------------------------------------------------------------------
1 | APP_NAME=Laravel
2 | APP_ENV=local
3 | APP_KEY=
4 | APP_DEBUG=true
5 | APP_LOG_LEVEL=debug
6 | APP_URL=http://localhost
7 |
8 | DB_CONNECTION=mysql
9 | DB_HOST=127.0.0.1
10 | DB_PORT=3306
11 | DB_DATABASE=homestead
12 | DB_USERNAME=homestead
13 | DB_PASSWORD=secret
14 |
15 | BROADCAST_DRIVER=log
16 | CACHE_DRIVER=file
17 | SESSION_DRIVER=file
18 | QUEUE_DRIVER=sync
19 |
20 | REDIS_HOST=127.0.0.1
21 | REDIS_PASSWORD=null
22 | REDIS_PORT=6379
23 |
24 | MAIL_DRIVER=smtp
25 | MAIL_HOST=smtp.mailtrap.io
26 | MAIL_PORT=2525
27 | MAIL_USERNAME=null
28 | MAIL_PASSWORD=null
29 | MAIL_ENCRYPTION=null
30 |
31 | PUSHER_APP_ID=
32 | PUSHER_APP_KEY=
33 | PUSHER_APP_SECRET=
34 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 | *.js linguist-vendored
5 | CHANGELOG.md export-ignore
6 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | vendor/
2 | node_modules/
3 | npm-debug.log
4 |
5 | # Laravel 4 specific
6 | bootstrap/compiled.php
7 | app/storage/
8 |
9 | # Laravel 5 & Lumen specific
10 | public/storage
11 | public/hot
12 | storage/*.key
13 | .env.*.php
14 | .env.php
15 | .env
16 | Homestead.yaml
17 | Homestead.json
18 |
19 | # Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
20 | .rocketeer/
21 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # lost-and-found
--------------------------------------------------------------------------------
/app/Admin.php:
--------------------------------------------------------------------------------
1 | hasMany(Item::class);
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/app/Console/Kernel.php:
--------------------------------------------------------------------------------
1 | command('inspire')
28 | // ->hourly();
29 | }
30 |
31 | /**
32 | * Register the Closure based commands for the application.
33 | *
34 | * @return void
35 | */
36 | protected function commands()
37 | {
38 | require base_path('routes/console.php');
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/app/Helpers/ItemsHelper.php:
--------------------------------------------------------------------------------
1 | where('user_id', $userID);
14 |
15 | return $lostItems->count();
16 | }
17 |
18 | public static function getFoundItems($userID)
19 | {
20 | $foundItems = Item::where('category', 'found')
21 | ->where('user_id', $userID);
22 |
23 | return $foundItems->count();
24 | }
25 |
26 | public static function getAllPostedItems()
27 | {
28 | $postedItems = Item::take(12)->inRandomOrder()->get();
29 | return $postedItems;
30 | }
31 |
32 | public static function getItemDetails($itemID)
33 | {
34 | $item = Item::find($itemID);
35 | return $item;
36 | }
37 |
38 | public static function itemToEdit($itemID)
39 | {
40 | $item = Item::find($itemID);
41 | return $item;
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/AdminLoginController.php:
--------------------------------------------------------------------------------
1 | middleware('guest:admin')->except('logout');
14 | }
15 |
16 | public function showLoginForm()
17 | {
18 | //
19 | }
20 |
21 | public function login(Request $request)
22 | {
23 | //
24 | }
25 |
26 | public function logout()
27 | {
28 | Auth::guard('admin')->logout();
29 | return redirect('/');
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/ForgotPasswordController.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/LoginController.php:
--------------------------------------------------------------------------------
1 | middleware('guest')->except('logout');
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Auth/ResetPasswordController.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 | user;
21 |
22 | return view('itemdetails', compact('item', 'author'));
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/app/Http/Controllers/HomeController.php:
--------------------------------------------------------------------------------
1 | middleware('auth');
20 | }
21 |
22 | /**
23 | * Show the application dashboard.
24 | *
25 | * @return \Illuminate\Http\Response
26 | */
27 | public function index()
28 | {
29 | return view('home');
30 | }
31 |
32 | public function showProfile()
33 | {
34 | $user = Auth::user();
35 | $lostItems = ItemsHelper::getLostItems(Auth::id());
36 | $foundItems = ItemsHelper::getFoundItems(Auth::id());
37 |
38 | return view('user.profile.index', compact('user', 'lostItems', 'foundItems'));
39 | }
40 |
41 | public function editProfile()
42 | {
43 | $user = Auth::user();
44 |
45 | return view('user.profile.edit', compact('user'));
46 | }
47 |
48 | public function processEditProfile(Request $request, $userID)
49 | {
50 | $userID = Auth::id();
51 | $user = User::find($userID);
52 |
53 | $user->name = $request->name;
54 | $user->location = $request->location;
55 | $user->phone = $request->phone;
56 | if ($user->update()) {
57 | return redirect()->route('profile')->with('success', 'Profile updated Successfully!');
58 | }
59 | return redirect()->back()->with('err', 'Oops! An error occured while updating your profile.');
60 | }
61 | }
62 |
--------------------------------------------------------------------------------
/app/Http/Controllers/SearchController.php:
--------------------------------------------------------------------------------
1 | input('query');
13 | $items = $item->searchItems($query);
14 |
15 | return view('searchresults', compact('items'));
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/app/Http/Middleware/EncryptCookies.php:
--------------------------------------------------------------------------------
1 | check()) {
21 | return redirect('/home');
22 | }
23 |
24 | return $next($request);
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/Http/Middleware/TrimStrings.php:
--------------------------------------------------------------------------------
1 | belongsTo(Admin::class);
12 | }
13 |
14 | public function user()
15 | {
16 | return $this->belongsTo(User::class);
17 | }
18 |
19 | public function searchItems($query)
20 | {
21 | return $this->where('title', 'like', "%$query%")
22 | ->orWhere('description', 'like', "%$query%")
23 | ->orWhere('category', 'like', "%$query%")
24 | ->orWhere('country', 'like', "%$query%")
25 | ->orWhere('location', 'like', "%$query%")
26 | ->paginate(30);
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/app/Providers/AppServiceProvider.php:
--------------------------------------------------------------------------------
1 | 'App\Policies\ModelPolicy',
17 | ];
18 |
19 | /**
20 | * Register any authentication / authorization services.
21 | *
22 | * @return void
23 | */
24 | public function boot()
25 | {
26 | $this->registerPolicies();
27 |
28 | //
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/app/Providers/BroadcastServiceProvider.php:
--------------------------------------------------------------------------------
1 | [
17 | 'App\Listeners\EventListener',
18 | ],
19 | ];
20 |
21 | /**
22 | * Register any events for your application.
23 | *
24 | * @return void
25 | */
26 | public function boot()
27 | {
28 | parent::boot();
29 |
30 | //
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/User.php:
--------------------------------------------------------------------------------
1 | hasMany(Item::class);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/bootstrap/autoload.php:
--------------------------------------------------------------------------------
1 | =5.6.4",
9 | "laravel/framework": "5.4.*",
10 | "laravel/tinker": "~1.0"
11 | },
12 | "require-dev": {
13 | "fzaninotto/faker": "~1.4",
14 | "mockery/mockery": "0.9.*",
15 | "phpunit/phpunit": "~5.7"
16 | },
17 | "autoload": {
18 | "classmap": [
19 | "database"
20 | ],
21 | "psr-4": {
22 | "App\\": "app/"
23 | }
24 | },
25 | "autoload-dev": {
26 | "psr-4": {
27 | "Tests\\": "tests/"
28 | }
29 | },
30 | "scripts": {
31 | "post-root-package-install": [
32 | "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
33 | ],
34 | "post-create-project-cmd": [
35 | "php artisan key:generate"
36 | ],
37 | "post-install-cmd": [
38 | "Illuminate\\Foundation\\ComposerScripts::postInstall",
39 | "php artisan optimize"
40 | ],
41 | "post-update-cmd": [
42 | "Illuminate\\Foundation\\ComposerScripts::postUpdate",
43 | "php artisan optimize"
44 | ]
45 | },
46 | "config": {
47 | "preferred-install": "dist",
48 | "sort-packages": true,
49 | "optimize-autoloader": true
50 | }
51 | }
52 |
--------------------------------------------------------------------------------
/config/services.php:
--------------------------------------------------------------------------------
1 | [
18 | 'domain' => env('MAILGUN_DOMAIN'),
19 | 'secret' => env('MAILGUN_SECRET'),
20 | ],
21 |
22 | 'ses' => [
23 | 'key' => env('SES_KEY'),
24 | 'secret' => env('SES_SECRET'),
25 | 'region' => 'us-east-1',
26 | ],
27 |
28 | 'sparkpost' => [
29 | 'secret' => env('SPARKPOST_SECRET'),
30 | ],
31 |
32 | 'stripe' => [
33 | 'model' => App\User::class,
34 | 'key' => env('STRIPE_KEY'),
35 | 'secret' => env('STRIPE_SECRET'),
36 | ],
37 |
38 | ];
39 |
--------------------------------------------------------------------------------
/config/view.php:
--------------------------------------------------------------------------------
1 | [
17 | resource_path('views'),
18 | ],
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Compiled View Path
23 | |--------------------------------------------------------------------------
24 | |
25 | | This option determines where all the compiled Blade templates will be
26 | | stored for your application. Typically, this is within the storage
27 | | directory. However, as usual, you are free to change this value.
28 | |
29 | */
30 |
31 | 'compiled' => realpath(storage_path('framework/views')),
32 |
33 | ];
34 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/database/factories/ModelFactory.php:
--------------------------------------------------------------------------------
1 | define(App\User::class, function (Faker\Generator $faker) {
16 | static $password;
17 |
18 | return [
19 | 'name' => $faker->name,
20 | 'email' => $faker->unique()->safeEmail,
21 | 'password' => $password ?: $password = bcrypt('secret'),
22 | 'remember_token' => str_random(10),
23 | ];
24 | });
25 |
--------------------------------------------------------------------------------
/database/migrations/2014_10_12_000000_create_users_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('name');
19 | $table->string('username');
20 | $table->string('email')->unique();
21 | $table->string('profilepic')->nullable();
22 | $table->string('password');
23 | $table->string('phone');
24 | $table->string('location');
25 | $table->rememberToken();
26 | $table->timestamps();
27 | });
28 | }
29 |
30 | /**
31 | * Reverse the migrations.
32 | *
33 | * @return void
34 | */
35 | public function down()
36 | {
37 | Schema::dropIfExists('users');
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/database/migrations/2014_10_12_100000_create_password_resets_table.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
18 | $table->string('token');
19 | $table->timestamp('created_at')->nullable();
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::dropIfExists('password_resets');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/database/migrations/2017_09_11_205002_create_admins_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('name');
19 | $table->string('email')->unique();
20 | $table->string('password');
21 | $table->string('authkey');
22 | $table->timestamps();
23 | });
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::dropIfExists('admins');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/database/migrations/2017_09_11_211121_create_items_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('title');
19 | $table->text('description');
20 | $table->string('image');
21 | $table->enum('category', ['lost', 'found'])->default('lost');
22 | $table->string('country')->default('Nigeria');
23 | $table->string('location')->default('Osun');
24 | $table->integer('user_id')->unsigned();
25 | $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
26 | $table->timestamps();
27 | });
28 | }
29 |
30 | /**
31 | * Reverse the migrations.
32 | *
33 | * @return void
34 | */
35 | public function down()
36 | {
37 | Schema::dropIfExists('items');
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
1 | call(UsersTableSeeder::class);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "scripts": {
4 | "dev": "npm run development",
5 | "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
6 | "watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
7 | "watch-poll": "npm run watch -- --watch-poll",
8 | "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
9 | "prod": "npm run production",
10 | "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
11 | },
12 | "devDependencies": {
13 | "axios": "^0.19.0",
14 | "bootstrap-sass": "^3.3.7",
15 | "cross-env": "^5.0.1",
16 | "jquery": "^3.1.1",
17 | "laravel-mix": "^1.0",
18 | "lodash": "^4.17.4",
19 | "vue": "^2.1.10"
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
The resource could not be found.
-------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular-3.html: -------------------------------------------------------------------------------- 1 |The resource could not be found.
-------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular-4.html: -------------------------------------------------------------------------------- 1 |The resource could not be found.
-------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.html: -------------------------------------------------------------------------------- 1 |The resource could not be found.
-------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regulard41d.html: -------------------------------------------------------------------------------- 1 |The resource could not be found.
-------------------------------------------------------------------------------- /public/assets/img/blog-masonry-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/blog-masonry-1.jpg -------------------------------------------------------------------------------- /public/assets/img/blog-masonry-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/blog-masonry-2.jpg -------------------------------------------------------------------------------- /public/assets/img/board-4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/board-4.jpeg -------------------------------------------------------------------------------- /public/assets/img/bottom1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/bottom1.jpg -------------------------------------------------------------------------------- /public/assets/img/grey-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/grey-bg.jpg -------------------------------------------------------------------------------- /public/assets/img/header2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/header2.jpg -------------------------------------------------------------------------------- /public/assets/img/hero10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero10.jpg -------------------------------------------------------------------------------- /public/assets/img/hero20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero20.jpg -------------------------------------------------------------------------------- /public/assets/img/hero23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero23.jpg -------------------------------------------------------------------------------- /public/assets/img/hero3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero3.jpg -------------------------------------------------------------------------------- /public/assets/img/hero6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/hero6.jpg -------------------------------------------------------------------------------- /public/assets/img/lightbox/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/lightbox/close.png -------------------------------------------------------------------------------- /public/assets/img/lightbox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/lightbox/loading.gif -------------------------------------------------------------------------------- /public/assets/img/lightbox/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/lightbox/next.png -------------------------------------------------------------------------------- /public/assets/img/lightbox/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/lightbox/prev.png -------------------------------------------------------------------------------- /public/assets/img/logo-big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/logo-big.jpg -------------------------------------------------------------------------------- /public/assets/img/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/logo-dark.png -------------------------------------------------------------------------------- /public/assets/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/logo-light.png -------------------------------------------------------------------------------- /public/assets/img/logo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/logo-small.jpg -------------------------------------------------------------------------------- /public/assets/img/oaunoticeboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/oaunoticeboard.jpg -------------------------------------------------------------------------------- /public/assets/img/project4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/project4.jpg -------------------------------------------------------------------------------- /public/assets/img/team-small-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/assets/img/team-small-1.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/alertify.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .toast-example{position:static!important;margin:10px 0 30px}.toast-example.padding-0{margin-bottom:30px}.toast-example>div{width:auto;padding-top:10px;padding-bottom:10px;margin-bottom:0}.position-example{position:relative;height:330px;margin-bottom:20px}.position-example>div{position:absolute;width:100%;padding:20px}.position-example>.btn-block+.btn-block{margin-top:215px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/animation.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example .animation-example{display:inline-block;cursor:pointer}.animation-delay-example button{-webkit-animation-name:fade-scale-02;-o-animation-name:fade-scale-02;animation-name:fade-scale-02;-webkit-animation-duration:.5s;-o-animation-duration:.5s;animation-duration:.5s;-webkit-animation-timing-function:ease-out;-o-animation-timing-function:ease-out;animation-timing-function:ease-out;-webkit-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both}.animation-delay-example:not(:hover) button,.touch .animation-delay-example:not(.hover) button{-webkit-animation-name:none;-o-animation-name:none;animation-name:none} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/highlight.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example{margin:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/lightbox.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .lightbox-block{max-width:600px;padding:15px 20px;margin:40px auto;overflow:auto;background:#fff;border-radius:3px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/masonry.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .blocks>li{margin-bottom:30px}.page-content .blocks>li>.widget{margin-bottom:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/rating.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .rating-hint{display:inline;margin-left:10px;vertical-align:sub} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/scrollable.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example{position:relative;padding:10px;border:1px solid #e4eaec}.example .scrollable-horizontal .scrollable-content{width:1400px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/advanced/toastr.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .toast-example{position:static!important;margin:10px 0 30px}.toast-example.padding-0{margin-bottom:30px}.toast-example>div{width:auto;max-width:300px;margin-bottom:0}.position-example{position:relative;height:330px;margin-bottom:20px}.position-example>div{position:absolute;width:100%;padding:20px}.position-example>.btn-block+.btn-block{margin-top:215px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/apps/projects.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .app-projects .projects-sort-label{margin-right:3px;cursor:default}.app-projects .dropdown-toggle{cursor:pointer}.app-projects .projects-wrap{padding-top:30px}.app-projects .panel{padding:10px;margin-bottom:0}.app-projects .blocks>li{margin-bottom:30px}.app-projects .overlay{margin-bottom:12px;border-radius:4px;overflow:visible}.app-projects .overlay .btn-group{position:absolute;top:5px;right:5px}.app-projects .overlay .btn-icon{color:#bdbdbd}.app-projects .overlay .btn-icon:hover{color:#fff}.app-projects .overlay .project-button{color:#fff}.app-projects .overlay .project-button:hover{background-color:#fff;color:#526069}.app-projects .overlay .dropdown .dropdown-menu>li>a{padding:6px 8px}.app-projects .overlay .dropdown:hover .dropdown-toggle{color:#fff}.app-projects .overlay .dropdown:hover .dropdown-menu{display:block}.app-projects .overlay .dropdown-menu{color:#76838f;margin-top:0;min-width:110px}.app-projects .overlay .dropdown-menu a{text-decoration:none}.app-projects .overlay-panel{background:rgba(38,50,56,.8)} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/charts/chartjs.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .max-width{max-width:400px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/charts/flot.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | #exampleFlotCurve,#exampleFlotFullBg,#exampleFlotHorizontalBar,#exampleFlotMix,#exampleFlotPie,#exampleFlotRealtime,#exampleFlotStackBar,#exampleFlotVisitors{height:300px}#exampleFlotVisitorsOverview{height:120px}.legend td{padding:3px}@media (max-width:586px){.example-responsive{padding-bottom:10px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/charts/pie-progress.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | #examplePie{max-width:350px}.pie-progress{max-width:150px;margin:0 auto}.pie-progress svg{width:100%}.pie-progress-xs{max-width:50px}.pie-progress-sm{max-width:100px}.pie-progress-lg{max-width:200px}.example.inline-block{margin-right:30px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/charts/sparkline.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .table>tbody>tr>td{vertical-align:middle} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/dashboard/v2.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .dashboard .page-header{background-image:url(../../images/dashboard2-header.jpg);-webkit-background-size:cover;background-size:cover}.dashboard .panel,.dashboard .widget{height:-webkit-calc(100% - 30px);height:calc(100% - 30px)}.dashboard .widget-content{height:100%}#widgetLinearea .ct-chart .ct-label.ct-horizontal,#widgetLinearea .ct-chart .ct-label.ct-vertical{font-size:14px}#widgetLinearea .ct-chart .ct-area{fill-opacity:1}#widgetLinearea .ct-chart .ct-series.ct-series-a .ct-area{fill:#d5e4f1}#widgetLinearea .ct-chart .ct-series.ct-series-b .ct-area{fill:#cdf4f1}#widgetLinearea ul .icon{vertical-align:text-bottom}#widgetGmap{overflow:hidden}#widgetGmap .map{border:none;padding:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/advanced.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .bootstrap-select{width:100%!important}.datepair-wrap{position:relative;overflow:hidden}.input-daterange-wrap{float:left}.input-daterange-to{float:left;width:40px;height:40px;line-height:40px;text-align:center}@media (max-width:1360px){.input-daterange-to,.input-daterange-wrap{display:block;float:none}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/image-cropping.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:0}.cropper-preview{overflow:hidden}.img-preview{float:left;margin:0 10px 10px 0;overflow:hidden}.img-preview>img{max-width:100%}.preview-lg{width:263px;height:148px}.preview-md{width:139px;height:78px}.preview-sm{width:69px;height:39px}.preview-xs{width:35px;height:20px;margin-right:0}.cropper,.cropper-toolbar{margin-bottom:30px}@media (min-width:1200px){.cropper{max-height:600px}}@media (min-width:769px){.cropper{max-height:400px}}@media (max-width:768px){.cropper{max-height:300px}}@media (max-width:480px){.cropper{max-height:246px}}@media (max-width:586px){.btn-group .btn{padding:6px 8px}.cropper{max-height:246px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/layouts.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | @media (min-width:768px) and (max-width:992px){.form-inline .control-label{display:block}.form-inline .form-group{margin-bottom:20px;vertical-align:baseline}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/masks.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | @import url(http://fonts.googleapis.com/css?family=Roboto+Mono);[data-plugin=formatter]{font-family:'Roboto Mono',Menlo,Monaco,Consolas,"Courier New",monospace} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/forms/validation.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .has-feedback .form-control-feedback{right:15px}.summary-errors p{color:inherit}.summary-errors ul li a{color:inherit}.summary-errors ul li a:hover{text-decoration:none}@media (min-width:768px){#exampleFullForm .form-horizontal .control-label{text-align:inherit}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/layouts/headers.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example-well .page-header{padding:30px 20px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/layouts/panel-transition.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-header{z-index:100}@media screen and (max-width:480px){.page-content .blocks li,.page-content [class*=blocks-] li{width:100%}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/code-editor.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-code-editor .page{height:-webkit-calc(56%);height:calc(56%)}.page-code-editor .page-content,.page-code-editor .page-main{padding:0;height:100%}.page-code-editor .page-aside-inner{height:100%}.page-code-editor .treeview .list-group-item.node-selected{background-color:#f3f7f9}.page-code-editor .treeview .list-group-item.node-selected,.page-code-editor .treeview .list-group-item.node-selected .node-icon{color:#62a8ea}.page-code-editor .CodeMirror{height:100%} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/email.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-email .page-content .panel{max-width:660px;margin:0 auto}.page-email .page-content .widget{padding:20px 0;margin:0}.page-email .page-content .widget-header{margin-bottom:35px}.page-email .page-content .widget-body h3{margin-bottom:20px}.page-email .page-content .widget-body-footer{margin-top:25px}.page-email .email-title{padding:15px 0 5px;text-align:center}.page-email .email-more{margin-top:40px;padding:35px 0 10px;text-align:center;border-top:1px solid #e4eaec}.page-email .email-more-title{font-size:20px}.page-email .email-more-content{padding:47px 0 54px}.page-email .email-more-social{padding:20px 0}.page-email .email-more-social a{margin:0 7px;padding:5px;text-decoration:none}.page-email .email-more-social .icon{color:rgba(55,71,79,.4);font-size:16px}.page-email .email-more-social .icon:focus,.page-email .email-more-social .icon:hover{color:rgba(55,71,79,.6)}.page-email .email-more-social .icon.active,.page-email .email-more-social .icon:active{color:#37474f}.page-email .email-unsubscribe{text-decoration:underline} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/errors.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-error .error-mark{margin-bottom:33px}.page-error header h1{font-size:10em;font-weight:400}.page-error header p{margin-bottom:30px;font-size:30px;text-transform:uppercase}.page-error h2{margin-bottom:30px}.page-error .error-advise{margin-bottom:25px;color:#A9AFB5} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/forgot-password.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-forgot-password{background-color:#f3f7f9}.page-forgot-password p{color:#a3afb7}.page-forgot-password form{width:250px;margin:30px auto} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/gallery-grid.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-gallery-grid .widget{margin-bottom:0}.page-gallery-grid .cover,.page-gallery-grid .cover-image,.page-gallery-grid .widget{height:100%;border-radius:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/gallery.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | @media (max-width:479px){.page-header-tabs .nav-tabs-line>li>a{padding:5px 12px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/invoice.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-invoice-table{margin-top:40px;margin-bottom:20px}.page-invoice-table tbody{border-bottom:1px solid #e4eaec}.page-invoice-table .table>tbody>tr>td,.page-invoice-table .table>tbody>tr>th,.page-invoice-table .table>tfoot>tr>td,.page-invoice-table .table>tfoot>tr>th,.page-invoice-table .table>thead>tr>td,.page-invoice-table .table>thead>tr>th{padding:15px 8px}.page-invoice-amount{margin-bottom:40px;padding-top:10px;font-size:20px;border-top:1px solid #e4eaec}@media (max-width:767px){.page-invoice .page-content .btn-animate{margin-bottom:10px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/lockscreen.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-locked:before{background-image:url(../../images/lockscreen.jpg)}.page-locked .avatar{margin-bottom:15px}.page-locked .locked-user{margin-bottom:35px}.page-locked form{width:300px;margin:22px auto} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/login.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-login:before{background-image:url(../../images/login.jpg)}.page-login form{width:340px;margin:30px 0}.page-login form a{margin-left:20px}@media (max-width:767px){.page-login form{width:auto}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/maintenance.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-maintenance-icon.icon{font-size:64px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/map.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-map-full #world-map,.page-map-full .gmap,.page-map-full .page{height:100%} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/profile.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-profile .widget-header{padding:40px 15px;background-color:#fff}.page-profile .widget-footer{padding:10px;background-color:#f6f9fd}.page-profile .widget .avatar{width:130px;margin-bottom:10px}.page-profile .profile-user{margin-bottom:10px;color:#263238}.page-profile .profile-job{margin-bottom:20px;color:#a3afb7}.page-profile .profile-social{margin:25px 0}.page-profile .profile-social .icon{margin:0 10px;color:rgba(55,71,79,.4)}.page-profile .profile-stat-count{display:block;margin-bottom:3px;color:#526069;font-size:20px;font-weight:100}.page-profile .profile-stat-count+span{color:#a3afb7}.page-profile .page-content .list-group-item{padding:25px 15px;border-top-color:#e4eaec}.page-profile .page-content .list-group-item:first-child{border-top:transparent}.page-profile .page-content .list-group-item:last-child{border-bottom-color:#e4eaec}.page-profile .page-content .list-group-item .media .avatar{width:50px}.page-profile .page-content .list-group-item .media small{color:#a3afb7}.page-profile .page-content .list-group-item .media-heading{font-size:16px}.page-profile .page-content .list-group-item .media-heading span{margin-left:5px;color:#76838f;font-size:14px}.page-profile .page-content .list-group-item .media .media:first-child{border-top:none}.page-profile .profile-readMore{margin:40px 0}.page-profile .profile-brief{margin-top:20px}.page-profile .profile-uploaded{max-width:220px;width:100%;max-height:150px;padding-right:20px;margin-bottom:5px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/register.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-register:before{background-image:url(../../images/login.jpg)}.page-register form{width:340px;margin:22px auto}@media (max-width:480px){.page-register form{width:auto}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/search-result.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-search-form{margin-bottom:35px}.page-search-title{font-size:26px}.page-search .list-group-item{padding-top:10px;padding-bottom:10px}.page-search .list-group-item>h4{margin-bottom:5px}.page-search .list-group-item>h4 a{color:#526069;text-decoration:none}.page-search .list-group-item>h4 a:hover{color:#37474f;text-decoration:none}.page-search .list-group-item>p:last-child{margin-bottom:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/pages/user.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-user .page-content form{margin-bottom:40px}.page-user .page-content .list-group-item{padding:25px 0;border-top-color:#e4eaec}.page-user .page-content .list-group-item:first-child{border-top-color:transparent}.page-user .page-content .list-group-item:last-child{border-bottom-color:#e4eaec}.page-user .page-content .list-group-item .media-heading>small{margin-left:10px}.page-user .page-content .list-group-item p{margin-bottom:5px}.page-user .page-content .list-group-item .media-right{vertical-align:middle}.page-user .page-content .nav-tabs-horizontal{position:relative}.page-user .page-content .page-user-sortlist{position:absolute;right:0;top:5px;z-index:2}@media (max-width:991px){.page-user .page-content .page-user-sortlist{top:-15px}}@media (max-width:767px){.page-user .page-content .list-group-item .media-right{display:block;margin-top:15px;text-align:center}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/alerts.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .alert .btn-default{background-color:transparent;border-color:transparent} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/breadcrumbs.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .breadcrumb-left .breadcrumb-ellipsis{padding-left:5px}.breadcrumb-left .dropdown{display:inline-block}.breadcrumb-left .breadcrumb-dropdown li.active{padding:3px 20px}.breadcrumb-right .breadcrumb-ellipsis{padding-right:5px}.breadcrumb-right .dropdown{display:inline-block}.breadcrumb-right .breadcrumb-dropdown li.active{padding:3px 20px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/chat.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .alert .btn-default{background-color:transparent;border-color:transparent} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/navbars.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .navbar-fixed-bottom,.page-content .navbar-fixed-top{position:relative}.scrollspy-example{position:relative;height:200px;padding:0 20px;overflow:auto;-webkit-box-shadow:0 2px 4px rgba(0,0,0,.08);box-shadow:0 2px 4px rgba(0,0,0,.08)}.example-fixed{height:400px;line-height:400px;text-align:center}.example-grid .example-col{margin-bottom:10px;word-break:break-all} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/pagination.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .pagination{margin:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/ribbon.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example{position:relative;padding:50px 15px 15px 50px;background-color:#f3f7fa;border:1px solid #eee}.example-reverse{padding:50px 50px 15px 15px}.example-bottom{padding:15px 15px 50px 50px}.example-bottom-reverse{padding:15px 50px 50px 15px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/testimonials.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .testimonial{margin:0} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/structure/timeline.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .tooltip-inner{white-space:nowrap} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/tables/datatable.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | @media (max-width:480px){.panel-actions .dataTables_length{display:none}}@media (max-width:320px){.panel-actions .dataTables_filter{display:none}}@media (max-width:767px){.dataTables_length{float:left}#exampleAddRow_wrapper .col-sm-12{overflow-x:auto}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/tables/jsgrid.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}@media (max-width:991px){#custom_view .panel-actions{position:relative;right:0;top:0;float:right;padding:0 30px 10px;-webkit-transform:none;-ms-transform:none;-o-transform:none;transform:none}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/badges-labels.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example>span{margin-right:16px}.example .label{line-height:30px}.example-2>span{margin-right:35px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/buttons.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .color-box{width:20px;height:40px;border-radius:4px}.btn.btn-direction{width:174px}.btn-pill-left,.btn-pill-right{width:120px}.active>.auto .text,.active>.text,.text-active{display:none!important}.active>.auto .text-active,.active>.text-active{display:inline-block!important}.active .icon{line-height:1}@media screen and (max-width:768px){.btn-group-justified .btn{min-height:50px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/carousel.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .items{width:100%}.owl-carousel-shortcode .item{text-align:center}.slider{margin:0 25px 30px;text-align:center}.slider img{width:100%;border:5px solid #fff}.slider h3{position:relative;padding:10px;margin:0 10px;font-size:36px;line-height:100px;background:#f3f7f9}#exampleCenter h3{opacity:.5;-webkit-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;-webkit-transform:scale(.95);-ms-transform:scale(.95);-o-transform:scale(.95);transform:scale(.95)}#exampleCenter .slick-center h3{color:#f2a654;opacity:1;-webkit-transform:scale(1.08);-ms-transform:scale(1.08);-o-transform:scale(1.08);transform:scale(1.08)} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/colors.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .color-primaries{padding:20px 0;margin-bottom:0}.color-primaries>div{display:inline-block;width:120px;height:120px;margin-right:40px;margin-bottom:20px;line-height:120px;color:#fff;text-align:center;border-radius:100%}.color-primaries>.bg-blue-grey-200{color:#868a8d}.color-palette{margin-bottom:25px}.color-palette h5{margin-bottom:27px}.color-palette .list-group{color:#fff}.color-palette .list-group-item{padding:15px 20px;border:none}.color-palette .list-group-item span+span{text-transform:uppercase}.color-box{width:100%;height:50px;padding-top:5px;padding-left:10px;margin-bottom:20px;color:#fff}.text-color-box{width:100%;height:200px;margin-bottom:15px}.example-alpha{width:100%;height:50px;margin-bottom:20px;line-height:50px;color:#fff;text-align:center}.example-divider{background-color:rgba(38,50,56,.1)!important}.example-border{max-width:300px;height:120px;margin-bottom:20px;border:1px solid #e4eaec}.example-border>div{float:left;width:50%;height:100%;padding-top:15px;padding-left:15px}.opacity-example span{display:inline-block;width:55px;white-space:nowrap}.opacity-four{color:rgba(55,71,79,.4)!important}.opacity-six{color:rgba(55,71,79,.6)!important}.opacity-eight{color:rgba(55,71,79,.8)!important}.blue-grey-700 i,.opacity-eight i,.opacity-four i,.opacity-six i{margin-right:5px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/dropdowns.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .dropdown-menu{width:240px}.blocks-dropdowns>li{margin-bottom:50px}.blocks-dropdowns .dropdown-menu{width:100%}@media (min-width:992px){.blocks-dropdowns>li{max-width:300px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/icon.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .page-content .input-search{max-width:450px;margin:35px auto 32px}.asRange{display:inline-block;width:120px;margin:3px 10px}.rangeUi-bar{background-color:rgba(67,77,83,.15)}.rangeUi-pointer,.rangeUi-selected{background-color:#37474f}.rangeUi-pointer{top:-5px;width:14px;height:14px}.panel-body .row{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.icondemo-wrap{position:relative;height:100px;margin:18px 0;text-align:center}.icondemo-wrap:hover{color:#fff;background-color:#62a8ea}.icondemo .icon{font-size:24px}.icon-title{margin-top:2px;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.is-hide{display:none} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/icons.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .title-desc{max-width:550px;margin:20px auto 35px;color:#a3afb7}.page-content .panel-body .example{padding:15px 30px;margin-top:0;margin-bottom:50px}.example .icondemo{height:40px;margin:15px auto;font-size:16px;line-height:40px;text-align:center} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/modals.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example-modal{display:block;width:100%;padding:35px 15px;background-color:#f3f7f9}.example-modal .modal{position:relative;top:auto;right:auto;bottom:auto;left:auto;z-index:1;display:block}.example-modal .modal .modal-dialog{width:auto;max-width:600px;margin:15px auto}.example-modal-top .center{top:0;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);-o-transform:translate(-50%,0);transform:translate(-50%,0)}.example-modal-bottom .center{top:auto;bottom:0;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);-o-transform:translate(-50%,0);transform:translate(-50%,0)}.example-modal-sidebar .center{top:0;right:5px;left:auto;-webkit-transform:none;-ms-transform:none;-o-transform:none;transform:none}.color-selector>li{margin-right:20px}@media (max-width:479px){#examplePositionSidebar .modal-sidebar{min-width:260px}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/panel-portlets.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .grid-stack-item-content{font-size:20px;color:#526069;text-align:center;background:#fff}.grid-stack-item-content .fa{display:block;margin:20px 0 10px;font-size:64px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/progress-bars.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .example-wrap .contextual-progress{margin:7px 0 36px} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/uikit/utilities.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .visiblity-utilities th small{display:block;color:#999}.visiblity-utilities .is-visible{color:#468847;text-align:center;background-color:#dff0d8!important}.visiblity-utilities .is-hidden{color:#ccc;text-align:center;background-color:#f9f9f9!important} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/widgets/data.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .fixed-table-body{height:100%;overflow:auto}#daily-feed .name{font-weight:500;color:#526069;cursor:pointer;text-decoration:none}#daily-feed .content{margin-top:10px;margin-bottom:0}#tickets .hightlight{color:#526069;font-weight:500;cursor:pointer;text-decoration:none}#projects .table>tbody>tr>td,#projects .table>thead>tr>th{vertical-align:middle} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/widgets/social.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .widget{margin-bottom:30px;height:-webkit-calc(100% - 30px);height:calc(100% - 30px)}@media (max-width:480px){.background-bottom .col-xs-6{width:100%}.background-bottom .col-xs-6+.col-xs-6{margin-top:20px}.avatar-group .counter-icon{display:block}.avatar-group .counter-icon>i{margin:0!important}}@media (min-width:1200px) and (max-width:1366px){.col-lg-3{width:50%}} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/widgets/statistics.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | -------------------------------------------------------------------------------- /public/dashboard/assets/examples/css/widgets/weather.min3f0d.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | 7 | .weather-location input{background-color:rgba(0,0,0,.5);border:1px solid rgba(255,255,255,.5)}.weather-location input:focus{border:1px solid rgba(255,255,255,.7)}.weather-day{height:150px;border-left:1px solid rgba(0,0,0,.05)}.weather-day.is-today{border-left:none} -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/chrome-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/chrome-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/firefox-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/firefox-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/internet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/internet-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/opera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/opera-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/browser/safari-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/browser/safari-logo.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/australia-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/australia-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/canada-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/canada-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/china-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/china-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/germany-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/germany-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/uk-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/uk-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/country/usa-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/country/usa-icon.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/navbar/fixed-to-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/navbar/fixed-to-bottom.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/navbar/fixed-to-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/navbar/fixed-to-top.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/products/applewatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/products/applewatch.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/products/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/products/imac.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/products/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/products/iphone.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/images/products/macmouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/assets/examples/images/products/macmouse.png -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/advanced/context-menu.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),function(){$("#exampleContext").contextmenu({target:"#exampleContextMenu",before:function(e){return e.preventDefault(),"SPAN"==e.target.tagName?(e.preventDefault(),this.closemenu(),!1):(this.getMenu().find("li").eq(4).find("a").html("This was dynamically changed"),!0)}})}(),function(){$("#exampleContext2").contextmenu({target:"#exampleContextMenu",onItem:function(context,e){alert($.trim($(e.target).text()))}}),$("#exampleContextMenu").on("show.bs.context",function(e){}),$("#exampleContextMenu").on("shown.bs.context",function(e){}),$("#exampleContextMenu").on("hide.bs.context",function(e){}),$("#exampleContextMenu").on("hidden.bs.context",function(e){})}()}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/advanced/highlight.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";var Site=window.Site;$(document).ready(function($){Site.run()}),hljs.initHighlightingOnLoad()}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/apps/documents.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";window.AppDocuments=App.extend({affixHandle:function(){$("#articleAffix").affix({offset:{top:210}})},scrollHandle:function(){$("body").scrollspy({target:"#articleAffix"})},run:function(next){this.scrollHandle(),this.affixHandle(),next()}}),$(document).ready(function(){AppDocuments.run()})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/apps/forum.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";window.AppForum=App.extend({run:function(next){next()}}),$(document).ready(function(){AppForum.run()})}(document,window,jQuery); -------------------------------------------------------------------------------- /public/dashboard/assets/examples/js/apps/message.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(document,window,$){"use strict";window.AppMessage=App.extend({scrollChatsToBottom:function(){var $chatsWrap=$(".app-message-chats"),chatsWrapH=$chatsWrap.height(),chatsH=$(".chats",$chatsWrap).outerHeight(),historyBtnH=$("#historyBtn").outerHeight();$chatsWrap.scrollTop(chatsH+historyBtnH-chatsWrapH)},handleResize:function(){var self=this;$(window).on("resize",function(){self.scrollChatsToBottom()})},handleTalking:function(){var self=this,$chatsWrap=$(".app-message-chats"),$textarea=$(".message-input textarea"),$textareaWrap=$(".app-message-input");autosize($(".message-input textarea")),$textarea.on("autosize:resized",function(){var height=$textareaWrap.outerHeight();$chatsWrap.css("height","calc(100% - "+height+"px)"),self.scrollChatsToBottom()}),$(".message-input-btn>button").on("click",function(){var talkContents=$(".message-input>.form-control").val(),$newMsg=$(""+talkContents+"
It is nice custom navigation for desktop users and a seek off-canvas menu for tablet and mobile users
"},{element:"#toggleFullscreen",intro:"Full ScreenClick this button you can view the admin template in full screen
"},{element:"#toggleChat",position:"left",intro:"Quick ConversationsThis is a sidebar dialog box for user conversations list, you can even create a quick conversation with other users
"}],skipLabel:"",doneLabel:"",nextLabel:"Next ",prevLabel:"Prev",showBullets:!1})}(window,document,$); -------------------------------------------------------------------------------- /public/dashboard/assets/js/sections/sidebar.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | !function(window,document,$){"use strict";$.site.sidebar={init:function(){"undefined"!=typeof $.slidePanel&&($(document).on("click",'[data-toggle="site-sidebar"]',function(){var $this=$(this),direction="right";$("body").hasClass("site-menubar-flipped")&&(direction="left");var defaults=$.components.getDefaults("slidePanel"),options=$.extend({},defaults,{direction:direction,skin:"site-sidebar",dragTolerance:80,template:function(options){return' '},afterLoad:function(){var self=this;this.$panel.find(".tab-pane").asScrollable({namespace:"scrollable",contentSelector:"> div",containerSelector:"> div"}),$.components.init("switchery",self.$panel),this.$panel.on("shown.bs.tab",function(){self.$panel.find(".tab-pane.active").asScrollable("update")})},beforeShow:function(){$this.hasClass("active")||$this.addClass("active")},afterHide:function(){$this.hasClass("active")&&$this.removeClass("active")}});if($this.hasClass("active"))$.slidePanel.hide();else{var url=$this.data("url");url||(url=$this.attr("href"),url=url&&url.replace(/.*(?=#[^\s]*$)/,"")),$.slidePanel.show({url:url},options)}}),$(document).on("click",'[data-toggle="show-chat"]',function(){$("#conversation").addClass("active")}),$(document).on("click",'[data-toggle="close-chat"]',function(){$("#conversation").removeClass("active")}))}}}(window,document,jQuery); -------------------------------------------------------------------------------- /public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/7-stroke/Pe-icon-7-strokebb1d.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/7-stroke/Pe-icon-7-stroked41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/7-stroke/Pe-icon-7-stroked41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsa29e.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsa29e.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsa29e.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsa29e.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsa29e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsa29e.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsa29e.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsa29e.woff2 -------------------------------------------------------------------------------- /public/dashboard/fonts/brand-icons/brand-iconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/brand-icons/brand-iconsd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfont914c.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfont914c.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfont914c.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfont914c.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfont914c.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfont914c.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfont914c.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfont914c.woff2 -------------------------------------------------------------------------------- /public/dashboard/fonts/font-awesome/fontawesome-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/font-awesome/fontawesome-webfontd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/dashboard/fonts/glyphicons/glyphicons-halflings-regulard41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/glyphicons/glyphicons-halflings-regulard41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/ionicons/ionicons790f.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/ionicons/ionicons790f.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/ionicons/ionicons790f.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/ionicons/ionicons790f.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/ionicons/ionicons790f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/ionicons/ionicons790f.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/material-design/Material-Design-Iconic-Fontd1f1.woff2 -------------------------------------------------------------------------------- /public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/mfglabs/mfglabsiconset-webfont.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/mfglabs/mfglabsiconset-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/mfglabs/mfglabsiconset-webfontd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/octicons/octicons9f24.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/octicons/octicons9f24.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/octicons/octicons9f24.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/octicons/octicons9f24.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/octicons/octicons9f24.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/octicons/octicons9f24.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/octicons/octiconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/octicons/octiconsd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconic.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconic.otf -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconic.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconic.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/open-iconic/open-iconicd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/open-iconic/open-iconicd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/themify/themify9f24.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/themify/themify9f24.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/themify/themify9f24.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/themify/themify9f24.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/themify/themify9f24.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/themify/themify9f24.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/themify/themifyd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/themify/themifyd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/weather-icons/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/weather-icons/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/weather-icons/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/weather-icons/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/weather-icons/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/weather-icons/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/weather-icons/weathericons-regular-webfontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/weather-icons/weathericons-regular-webfontd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd41d.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd622.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd622.eot -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd622.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd622.ttf -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd622.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd622.woff -------------------------------------------------------------------------------- /public/dashboard/fonts/web-icons/web-iconsd622.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamwebwiz/lostandfound/d8ae01965a87e439230bc7b5d611ac78781c7675/public/dashboard/fonts/web-icons/web-iconsd622.woff2 -------------------------------------------------------------------------------- /public/dashboard/js/components/ace.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("ace",{mode:"init",defaults:{},init:function(context){"undefined"!=typeof ace&&(ace.config.loadModule("ace/ext/language_tools"),$('[data-plugin="ace"]',context).each(function(){var id=$(this).attr("id"),mode=$(this).data("mode"),theme=$(this).data("theme"),editor=ace.edit(id);editor.container.style.opacity="",mode&&editor.session.setMode("ace/mode/"+mode),theme&&editor.setTheme("ace/theme/"+theme),editor.setOption("maxLines",40),editor.setAutoScrollEditorIntoView(!0),ace.config.loadModule("ace/ext/language_tools",function(){editor.setOptions({enableSnippets:!0,enableBasicAutocompletion:!0})})}))}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/animate-list.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("animate-list",{mode:"init",defaults:{child:".panel",duration:250,delay:50,animate:"scale-up",fill:"backwards"},init:function(){var self=this;$("[data-plugin=animateList]").each(function(){var $this=$(this),options=$.extend({},self.defaults,$this.data(),!0),animatedBox=function($el,opts){this.options=opts,this.$children=$el.find(opts.child),this.$children.addClass("animation-"+opts.animate),this.$children.css("animation-fill-mode",opts.fill),this.$children.css("animation-duration",opts.duration+"ms");var delay=0,self=this;this.$children.each(function(){$(this).css("animation-delay",delay+"ms"),delay+=self.options.delay})};animatedBox.prototype={run:function(type){var self=this;this.$children.removeClass("animation-"+this.options.animate),"undefined"!=typeof type&&(this.options.animate=type),setTimeout(function(){self.$children.addClass("animation-"+self.options.animate)},0)}},$this.data("animateList",new animatedBox($this,options))})}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/animsition.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("animsition",{mode:"manual",defaults:{inClass:"fade-in",outClass:"fade-out",inDuration:800,outDuration:500,linkElement:".animsition-link",loading:!0,loadingParentElement:"body",loadingClass:"loader",loadingType:"default",timeout:!1,timeoutCountdown:5e3,onLoadEvent:!0,browser:["animation-duration","-webkit-animation-duration"],overlay:!1,overlayClass:"animsition-overlay-slide",overlayParentElement:"body",inDefaults:["fade-in","fade-in-up-sm","fade-in-up","fade-in-up-lg","fade-in-down-sm","fade-in-down","fade-in-down-lg","fade-in-left-sm","fade-in-left","fade-in-left-lg","fade-in-right-sm","fade-in-right","fade-in-right-lg","zoom-in-sm","zoom-in","zoom-in-lg"],outDefaults:["fade-out","fade-out-up-sm","fade-out-up","fade-out-up-lg","fade-out-down-sm","fade-out-down","fade-out-down-lg","fade-out-left-sm","fade-out-left","fade-out-left-lg","fade-out-right-sm","fade-out-right","fade-out-right-lg","zoom-out-sm","zoom-out","zoom-out-lg"]},init:function(context,callback){var options=$.components.getDefaults("animsition");if(options.random){var li=options.inDefaults.length,lo=options.outDefaults.length,ni=parseInt(li*Math.random(),0),no=parseInt(lo*Math.random(),0);options.inClass=options.inDefaults[ni],options.outClass=options.outDefaults[no]}var $this=$(".animsition",context);return $this.animsition(options),$("."+options.loadingClass).addClass("loader-"+options.loadingType),$this.animsition("supportCheck",options)?($.isFunction(callback)&&$this.one("animsition.end",function(){callback.call()}),!0):($.isFunction(callback)&&callback.call(),!1)}}); -------------------------------------------------------------------------------- /public/dashboard/js/components/asbreadcrumbs.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Remark (http://getbootstrapadmin.com/remark) 3 | * Copyright 2016 amazingsurge 4 | * Licensed under the Themeforest Standard Licenses 5 | */ 6 | $.components.register("breadcrumb",{mode:"init",defaults:{namespace:"breadcrumb",dropdown:function(){return''},dropdownContent:function(value){return'