├── 00-03_project_files ├── app │ ├── controllers │ │ └── home.php │ ├── core │ │ ├── config.php │ │ ├── database.php │ │ ├── functions.php │ │ └── init.php │ └── views │ │ └── home.view.php ├── pos.png └── public │ ├── assets │ ├── bootstrap-5.1.3-dist │ │ └── bootstrap-5.1.3-dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-grid.rtl.css │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ ├── bootstrap-utilities.css │ │ │ ├── bootstrap-utilities.css.map │ │ │ ├── bootstrap-utilities.min.css │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.esm.js │ │ │ ├── bootstrap.esm.js.map │ │ │ ├── bootstrap.esm.min.js │ │ │ ├── bootstrap.esm.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ ├── fontawesome-free-5.15.2-web │ │ └── fontawesome-free-5.15.2-web │ │ │ ├── LICENSE.txt │ │ │ ├── attribution.js │ │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ ├── all.js │ │ │ ├── all.min.js │ │ │ ├── brands.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.js │ │ │ ├── regular.min.js │ │ │ ├── solid.js │ │ │ ├── solid.min.js │ │ │ ├── v4-shims.js │ │ │ └── v4-shims.min.js │ │ │ ├── less │ │ │ ├── _animated.less │ │ │ ├── _bordered-pulled.less │ │ │ ├── _core.less │ │ │ ├── _fixed-width.less │ │ │ ├── _icons.less │ │ │ ├── _larger.less │ │ │ ├── _list.less │ │ │ ├── _mixins.less │ │ │ ├── _rotated-flipped.less │ │ │ ├── _screen-reader.less │ │ │ ├── _shims.less │ │ │ ├── _stacked.less │ │ │ ├── _variables.less │ │ │ ├── brands.less │ │ │ ├── fontawesome.less │ │ │ ├── regular.less │ │ │ ├── solid.less │ │ │ └── v4-shims.less │ │ │ ├── metadata │ │ │ ├── categories.yml │ │ │ ├── icons.json │ │ │ ├── icons.yml │ │ │ ├── shims.json │ │ │ ├── shims.yml │ │ │ └── sponsors.yml │ │ │ ├── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _shims.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ ├── brands.scss │ │ │ ├── fontawesome.scss │ │ │ ├── regular.scss │ │ │ ├── solid.scss │ │ │ └── v4-shims.scss │ │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudflare.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── deezer.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge-legacy.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-pay.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── guilded.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hive.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── innosoft.svg │ │ │ │ ├── instagram-square.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── instalod.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── octopus-deploy.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── perbyte.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper-square.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── rust.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopify.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uncharted.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── watchman-monitoring.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wodu.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bacteria.svg │ │ │ │ ├── bacterium.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box-tissue.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-alt.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── disease.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-alt.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── faucet.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding-water.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-sparkles.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands-wash.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ ├── handshake-slash.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ ├── head-side-cough.svg │ │ │ │ ├── head-side-mask.svg │ │ │ │ ├── head-side-virus.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital-user.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── house-user.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-house.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── lungs-virus.svg │ │ │ │ ├── lungs.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-arrows.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane-slash.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── pump-medical.svg │ │ │ │ ├── pump-soap.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── shield-virus.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sink.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── soap.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch-20.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt-slash.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store-slash.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── swimmer.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── sync-alt.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── table-tennis.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-alt.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachometer-alt.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users-slash.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vest-patches.svg │ │ │ │ ├── vest.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── virus-slash.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── viruses.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ └── images │ │ ├── 1558521918.png │ │ ├── 1601525.jpg │ │ ├── 3f9f908==h400=w400.jpg │ │ ├── 5e13c2ffb1d1a1be069f06bf_upc-00852201007100-glamor-frontpackageglamor-2019-04-04t15-16-19-8cae4770-bf4f-4f9b-b7e4-909477b4c491._TTD_._SR600,600_._QL100_.jpg │ │ ├── 7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg │ │ ├── 7UP-300x300.jpg │ │ ├── 8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg │ │ ├── caramel-moolatte.png │ │ ├── drinks_cola_zero.jpg │ │ ├── fast-food-1559854913.jpg │ │ ├── fast-food-drinks-coffee-soft-drink-wallpaper.jpg │ │ ├── fast-food-frozen-beverages.jpeg │ │ ├── fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png │ │ ├── fast-food.jpg │ │ ├── image.jpg │ │ ├── images5.jpg │ │ ├── kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg │ │ ├── png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png │ │ ├── png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png │ │ ├── png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png │ │ ├── sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg │ │ ├── shutterstock_172259846-740x491.jpg │ │ ├── unnamed.jpg │ │ └── wh-best-sparkling-waters-1574094721.jpg │ └── index.php ├── 04-10_project_files ├── app │ ├── controllers │ │ ├── home.php │ │ ├── login.php │ │ └── signup.php │ ├── core │ │ ├── config.php │ │ ├── database.php │ │ ├── functions.php │ │ └── init.php │ └── views │ │ ├── auth │ │ ├── login.view.php │ │ └── signup.view.php │ │ ├── home.view.php │ │ └── partials │ │ ├── footer.view.php │ │ ├── header.view.php │ │ └── nav.view.php ├── pos.png └── public │ ├── assets │ ├── css │ │ ├── all.min.css │ │ └── bootstrap.min.css │ ├── images │ │ ├── 1558521918.png │ │ ├── 1601525.jpg │ │ ├── 3f9f908==h400=w400.jpg │ │ ├── 7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg │ │ ├── 7UP-300x300.jpg │ │ ├── 8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg │ │ ├── caramel-moolatte.png │ │ ├── drinks_cola_zero.jpg │ │ ├── fast-food-1559854913.jpg │ │ ├── fast-food-drinks-coffee-soft-drink-wallpaper.jpg │ │ ├── fast-food-frozen-beverages.jpeg │ │ ├── fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png │ │ ├── fast-food.jpg │ │ ├── image.jpg │ │ ├── images5.jpg │ │ ├── kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg │ │ ├── png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png │ │ ├── png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png │ │ ├── png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png │ │ ├── sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg │ │ ├── shutterstock_172259846-740x491.jpg │ │ ├── unnamed.jpg │ │ ├── wave.jpg │ │ └── wh-best-sparkling-waters-1574094721.jpg │ ├── js │ │ └── bootstrap.min.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ └── index.php ├── 104-118_project_files ├── app │ ├── controllers │ │ ├── admin.php │ │ ├── ajax.php │ │ ├── delete-user.php │ │ ├── edit-user.php │ │ ├── home.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── print.php │ │ ├── product-delete.php │ │ ├── product-edit.php │ │ ├── product-new.php │ │ ├── profile.php │ │ ├── sale-delete.php │ │ ├── sale-edit.php │ │ └── signup.php │ ├── core │ │ ├── config.php │ │ ├── database.php │ │ ├── functions.php │ │ ├── init.php │ │ └── model.php │ ├── models │ │ ├── Auth.php │ │ ├── Graph.php │ │ ├── Pager.php │ │ ├── Product.php │ │ ├── Sale.php │ │ └── User.php │ └── views │ │ ├── admin │ │ ├── admin.view.php │ │ ├── dashboard.view.php │ │ ├── products.view.php │ │ ├── sales.view.php │ │ └── users.view.php │ │ ├── auth │ │ ├── delete-user.view.php │ │ ├── denied.view.php │ │ ├── edit-user.view.php │ │ ├── login.view.php │ │ ├── profile.view.php │ │ └── signup.view.php │ │ ├── home.view.php │ │ ├── partials │ │ ├── footer.view.php │ │ ├── header.view.php │ │ └── nav.view.php │ │ ├── print.view.php │ │ ├── products │ │ ├── product-delete.view.php │ │ ├── product-edit.view.php │ │ └── product-new.view.php │ │ └── sales │ │ ├── sale-delete.view.php │ │ └── sale-edit.view.php ├── pos_db.sql └── public │ ├── assets │ ├── css │ │ ├── all.min.css │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── images │ │ ├── 1558521918.png │ │ ├── 1601525.jpg │ │ ├── 3f9f908==h400=w400.jpg │ │ ├── 7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg │ │ ├── 7UP-300x300.jpg │ │ ├── 8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg │ │ ├── caramel-moolatte.png │ │ ├── drinks_cola_zero.jpg │ │ ├── fast-food-1559854913.jpg │ │ ├── fast-food-drinks-coffee-soft-drink-wallpaper.jpg │ │ ├── fast-food-frozen-beverages.jpeg │ │ ├── fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png │ │ ├── fast-food.jpg │ │ ├── image.jpg │ │ ├── images5.jpg │ │ ├── kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg │ │ ├── no_image.jpg │ │ ├── png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png │ │ ├── png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png │ │ ├── png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png │ │ ├── sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg │ │ ├── shutterstock_172259846-740x491.jpg │ │ ├── unnamed.jpg │ │ ├── user_female.jpg │ │ ├── user_male.jpg │ │ ├── wave.jpg │ │ └── wh-best-sparkling-waters-1574094721.jpg │ ├── js │ │ └── bootstrap.min.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── file.vbs │ ├── index.php │ └── uploads │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812.jpg │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812_cropped.jpg │ ├── 1d6a9b46585f7e0d86e96b15b9bbe887b45f4719_3479_cropped.jpg │ ├── 8e48046fda3ed2fb388d195c0ffb948232ed8ad7_5071_cropped.jpg │ ├── 9696c9f84f34af001df13ab4cfc6337cdae55ca3_6105.jpg │ ├── 9696c9f84f34af001df13ab4cfc6337cdae55ca3_6105_cropped.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817_cropped.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698_cropped.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896_cropped.jpg │ ├── e80200cc753ea342725ba080f668144fe4c763b9_7977.jpg │ └── e80200cc753ea342725ba080f668144fe4c763b9_7977_cropped.jpg ├── 11-28_project_files ├── app │ ├── controllers │ │ ├── admin.php │ │ ├── home.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── product-new.php │ │ └── signup.php │ ├── core │ │ ├── config.php │ │ ├── database.php │ │ ├── functions.php │ │ ├── init.php │ │ └── model.php │ ├── models │ │ ├── Product.php │ │ └── User.php │ └── views │ │ ├── admin │ │ └── admin.view.php │ │ ├── auth │ │ ├── login.view.php │ │ └── signup.view.php │ │ ├── home.view.php │ │ ├── partials │ │ ├── footer.view.php │ │ ├── header.view.php │ │ └── nav.view.php │ │ └── products │ │ └── product-new.view.php ├── pos_db.sql └── public │ ├── assets │ ├── css │ │ ├── all.min.css │ │ └── bootstrap.min.css │ ├── images │ │ ├── 1558521918.png │ │ ├── 1601525.jpg │ │ ├── 3f9f908==h400=w400.jpg │ │ ├── 7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg │ │ ├── 7UP-300x300.jpg │ │ ├── 8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg │ │ ├── caramel-moolatte.png │ │ ├── drinks_cola_zero.jpg │ │ ├── fast-food-1559854913.jpg │ │ ├── fast-food-drinks-coffee-soft-drink-wallpaper.jpg │ │ ├── fast-food-frozen-beverages.jpeg │ │ ├── fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png │ │ ├── fast-food.jpg │ │ ├── image.jpg │ │ ├── images5.jpg │ │ ├── kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg │ │ ├── png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png │ │ ├── png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png │ │ ├── png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png │ │ ├── sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg │ │ ├── shutterstock_172259846-740x491.jpg │ │ ├── unnamed.jpg │ │ ├── wave.jpg │ │ └── wh-best-sparkling-waters-1574094721.jpg │ ├── js │ │ └── bootstrap.min.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ └── index.php ├── 29-42_project_files ├── app │ ├── controllers │ │ ├── admin.php │ │ ├── home.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── product-delete.php │ │ ├── product-edit.php │ │ ├── product-new.php │ │ └── signup.php │ ├── core │ │ ├── config.php │ │ ├── database.php │ │ ├── functions.php │ │ ├── init.php │ │ └── model.php │ ├── models │ │ ├── Product.php │ │ └── User.php │ └── views │ │ ├── admin │ │ ├── admin.view.php │ │ └── products.view.php │ │ ├── auth │ │ ├── login.view.php │ │ └── signup.view.php │ │ ├── home.view.php │ │ ├── partials │ │ ├── footer.view.php │ │ ├── header.view.php │ │ └── nav.view.php │ │ └── products │ │ ├── product-delete.view.php │ │ ├── product-edit.view.php │ │ └── product-new.view.php ├── pos.png ├── pos_db.sql └── public │ ├── assets │ ├── css │ │ ├── all.min.css │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── images │ │ ├── 1558521918.png │ │ ├── 1601525.jpg │ │ ├── 3f9f908==h400=w400.jpg │ │ ├── 7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg │ │ ├── 7UP-300x300.jpg │ │ ├── 8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg │ │ ├── caramel-moolatte.png │ │ ├── drinks_cola_zero.jpg │ │ ├── fast-food-1559854913.jpg │ │ ├── fast-food-drinks-coffee-soft-drink-wallpaper.jpg │ │ ├── fast-food-frozen-beverages.jpeg │ │ ├── fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png │ │ ├── fast-food.jpg │ │ ├── image.jpg │ │ ├── images5.jpg │ │ ├── kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg │ │ ├── png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png │ │ ├── png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png │ │ ├── png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png │ │ ├── sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg │ │ ├── shutterstock_172259846-740x491.jpg │ │ ├── unnamed.jpg │ │ ├── wave.jpg │ │ └── wh-best-sparkling-waters-1574094721.jpg │ ├── js │ │ └── bootstrap.min.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── index.php │ └── uploads │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812.jpg │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812_cropped.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817_cropped.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698_cropped.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896.jpg │ └── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896_cropped.jpg ├── 43-47_project_files ├── app │ ├── controllers │ │ ├── admin.php │ │ ├── ajax.php │ │ ├── home.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── product-delete.php │ │ ├── product-edit.php │ │ ├── product-new.php │ │ └── signup.php │ ├── core │ │ ├── config.php │ │ ├── database.php │ │ ├── functions.php │ │ ├── init.php │ │ └── model.php │ ├── models │ │ ├── Product.php │ │ └── User.php │ └── views │ │ ├── admin │ │ ├── admin.view.php │ │ └── products.view.php │ │ ├── auth │ │ ├── login.view.php │ │ └── signup.view.php │ │ ├── home.view.php │ │ ├── partials │ │ ├── footer.view.php │ │ ├── header.view.php │ │ └── nav.view.php │ │ └── products │ │ ├── product-delete.view.php │ │ ├── product-edit.view.php │ │ └── product-new.view.php ├── pos.png ├── pos_db.sql └── public │ ├── assets │ ├── css │ │ ├── all.min.css │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── images │ │ ├── 1558521918.png │ │ ├── 1601525.jpg │ │ ├── 3f9f908==h400=w400.jpg │ │ ├── 7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg │ │ ├── 7UP-300x300.jpg │ │ ├── 8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg │ │ ├── caramel-moolatte.png │ │ ├── drinks_cola_zero.jpg │ │ ├── fast-food-1559854913.jpg │ │ ├── fast-food-drinks-coffee-soft-drink-wallpaper.jpg │ │ ├── fast-food-frozen-beverages.jpeg │ │ ├── fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png │ │ ├── fast-food.jpg │ │ ├── image.jpg │ │ ├── images5.jpg │ │ ├── kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg │ │ ├── png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png │ │ ├── png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png │ │ ├── png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png │ │ ├── sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg │ │ ├── shutterstock_172259846-740x491.jpg │ │ ├── unnamed.jpg │ │ ├── wave.jpg │ │ └── wh-best-sparkling-waters-1574094721.jpg │ ├── js │ │ └── bootstrap.min.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── index.php │ └── uploads │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812.jpg │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812_cropped.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817_cropped.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698_cropped.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896_cropped.jpg │ ├── e80200cc753ea342725ba080f668144fe4c763b9_7977.jpg │ └── e80200cc753ea342725ba080f668144fe4c763b9_7977_cropped.jpg ├── 48-56_project_files ├── app │ ├── controllers │ │ ├── admin.php │ │ ├── ajax.php │ │ ├── home.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── product-delete.php │ │ ├── product-edit.php │ │ ├── product-new.php │ │ └── signup.php │ ├── core │ │ ├── config.php │ │ ├── database.php │ │ ├── functions.php │ │ ├── init.php │ │ └── model.php │ ├── models │ │ ├── Product.php │ │ └── User.php │ └── views │ │ ├── admin │ │ ├── admin.view.php │ │ └── products.view.php │ │ ├── auth │ │ ├── login.view.php │ │ └── signup.view.php │ │ ├── home.view.php │ │ ├── partials │ │ ├── footer.view.php │ │ ├── header.view.php │ │ └── nav.view.php │ │ └── products │ │ ├── product-delete.view.php │ │ ├── product-edit.view.php │ │ └── product-new.view.php ├── pos.png ├── pos_db.sql └── public │ ├── assets │ ├── css │ │ ├── all.min.css │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── images │ │ ├── 1558521918.png │ │ ├── 1601525.jpg │ │ ├── 3f9f908==h400=w400.jpg │ │ ├── 7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg │ │ ├── 7UP-300x300.jpg │ │ ├── 8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg │ │ ├── caramel-moolatte.png │ │ ├── drinks_cola_zero.jpg │ │ ├── fast-food-1559854913.jpg │ │ ├── fast-food-drinks-coffee-soft-drink-wallpaper.jpg │ │ ├── fast-food-frozen-beverages.jpeg │ │ ├── fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png │ │ ├── fast-food.jpg │ │ ├── image.jpg │ │ ├── images5.jpg │ │ ├── kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg │ │ ├── png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png │ │ ├── png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png │ │ ├── png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png │ │ ├── sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg │ │ ├── shutterstock_172259846-740x491.jpg │ │ ├── unnamed.jpg │ │ ├── wave.jpg │ │ └── wh-best-sparkling-waters-1574094721.jpg │ ├── js │ │ └── bootstrap.min.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── index.php │ └── uploads │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812.jpg │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812_cropped.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817_cropped.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698_cropped.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896_cropped.jpg │ ├── e80200cc753ea342725ba080f668144fe4c763b9_7977.jpg │ └── e80200cc753ea342725ba080f668144fe4c763b9_7977_cropped.jpg ├── 57-76_project_files ├── app │ ├── controllers │ │ ├── admin.php │ │ ├── ajax.php │ │ ├── delete-user.php │ │ ├── edit-user.php │ │ ├── home.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── product-delete.php │ │ ├── product-edit.php │ │ ├── product-new.php │ │ └── signup.php │ ├── core │ │ ├── config.php │ │ ├── database.php │ │ ├── functions.php │ │ ├── init.php │ │ └── model.php │ ├── models │ │ ├── Auth.php │ │ ├── Product.php │ │ ├── Sale.php │ │ └── User.php │ └── views │ │ ├── admin │ │ ├── admin.view.php │ │ ├── products.view.php │ │ ├── sales.view.php │ │ └── users.view.php │ │ ├── auth │ │ ├── delete-user.view.php │ │ ├── denied.view.php │ │ ├── edit-user.view.php │ │ ├── login.view.php │ │ └── signup.view.php │ │ ├── home.view.php │ │ ├── partials │ │ ├── footer.view.php │ │ ├── header.view.php │ │ └── nav.view.php │ │ └── products │ │ ├── product-delete.view.php │ │ ├── product-edit.view.php │ │ └── product-new.view.php ├── pos.png ├── pos_db.sql └── public │ ├── assets │ ├── css │ │ ├── all.min.css │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── images │ │ ├── 1558521918.png │ │ ├── 1601525.jpg │ │ ├── 3f9f908==h400=w400.jpg │ │ ├── 7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg │ │ ├── 7UP-300x300.jpg │ │ ├── 8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg │ │ ├── caramel-moolatte.png │ │ ├── drinks_cola_zero.jpg │ │ ├── fast-food-1559854913.jpg │ │ ├── fast-food-drinks-coffee-soft-drink-wallpaper.jpg │ │ ├── fast-food-frozen-beverages.jpeg │ │ ├── fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png │ │ ├── fast-food.jpg │ │ ├── image.jpg │ │ ├── images5.jpg │ │ ├── kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg │ │ ├── no_image.jpg │ │ ├── png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png │ │ ├── png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png │ │ ├── png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png │ │ ├── sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg │ │ ├── shutterstock_172259846-740x491.jpg │ │ ├── unnamed.jpg │ │ ├── user_female.jpg │ │ ├── user_male.jpg │ │ ├── wave.jpg │ │ └── wh-best-sparkling-waters-1574094721.jpg │ ├── js │ │ └── bootstrap.min.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── index.php │ └── uploads │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812.jpg │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812_cropped.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817_cropped.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698_cropped.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896_cropped.jpg │ ├── e80200cc753ea342725ba080f668144fe4c763b9_7977.jpg │ └── e80200cc753ea342725ba080f668144fe4c763b9_7977_cropped.jpg ├── 77-103_project_files ├── app │ ├── controllers │ │ ├── admin.php │ │ ├── ajax.php │ │ ├── delete-user.php │ │ ├── edit-user.php │ │ ├── home.php │ │ ├── login.php │ │ ├── logout.php │ │ ├── product-delete.php │ │ ├── product-edit.php │ │ ├── product-new.php │ │ ├── profile.php │ │ ├── sale-delete.php │ │ ├── sale-edit.php │ │ └── signup.php │ ├── core │ │ ├── config.php │ │ ├── database.php │ │ ├── functions.php │ │ ├── init.php │ │ └── model.php │ ├── models │ │ ├── Auth.php │ │ ├── Graph.php │ │ ├── Pager.php │ │ ├── Product.php │ │ ├── Sale.php │ │ └── User.php │ └── views │ │ ├── admin │ │ ├── admin.view.php │ │ ├── products.view.php │ │ ├── sales.view.php │ │ └── users.view.php │ │ ├── auth │ │ ├── delete-user.view.php │ │ ├── denied.view.php │ │ ├── edit-user.view.php │ │ ├── login.view.php │ │ ├── profile.view.php │ │ └── signup.view.php │ │ ├── home.view.php │ │ ├── partials │ │ ├── footer.view.php │ │ ├── header.view.php │ │ └── nav.view.php │ │ ├── products │ │ ├── product-delete.view.php │ │ ├── product-edit.view.php │ │ └── product-new.view.php │ │ └── sales │ │ ├── sale-delete.view.php │ │ └── sale-edit.view.php ├── pos.png └── public │ ├── assets │ ├── css │ │ ├── all.min.css │ │ ├── bootstrap.min.css │ │ └── main.css │ ├── images │ │ ├── 1558521918.png │ │ ├── 1601525.jpg │ │ ├── 3f9f908==h400=w400.jpg │ │ ├── 7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg │ │ ├── 7UP-300x300.jpg │ │ ├── 8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg │ │ ├── caramel-moolatte.png │ │ ├── drinks_cola_zero.jpg │ │ ├── fast-food-1559854913.jpg │ │ ├── fast-food-drinks-coffee-soft-drink-wallpaper.jpg │ │ ├── fast-food-frozen-beverages.jpeg │ │ ├── fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png │ │ ├── fast-food.jpg │ │ ├── image.jpg │ │ ├── images5.jpg │ │ ├── kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg │ │ ├── no_image.jpg │ │ ├── png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png │ │ ├── png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png │ │ ├── png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png │ │ ├── sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg │ │ ├── shutterstock_172259846-740x491.jpg │ │ ├── unnamed.jpg │ │ ├── user_female.jpg │ │ ├── user_male.jpg │ │ ├── wave.jpg │ │ └── wh-best-sparkling-waters-1574094721.jpg │ ├── js │ │ └── bootstrap.min.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── index.php │ └── uploads │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812.jpg │ ├── 019111ea60f176a07807d9be878b7b0ff5d4c52b_5812_cropped.jpg │ ├── 1d6a9b46585f7e0d86e96b15b9bbe887b45f4719_3479_cropped.jpg │ ├── 8e48046fda3ed2fb388d195c0ffb948232ed8ad7_5071_cropped.jpg │ ├── 9696c9f84f34af001df13ab4cfc6337cdae55ca3_6105.jpg │ ├── 9696c9f84f34af001df13ab4cfc6337cdae55ca3_6105_cropped.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817.jpg │ ├── a376a3a3f34dc21971ca40ac6dd6664585c197a6_4817_cropped.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698.jpg │ ├── c322c54a3249e75ca46347a2c4ec9385672cb8e3_5698_cropped.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896.jpg │ ├── e149b8702ddb43e5cda3c10803c563203b27cfc0_6896_cropped.jpg │ ├── e80200cc753ea342725ba080f668144fe4c763b9_7977.jpg │ └── e80200cc753ea342725ba080f668144fe4c763b9_7977_cropped.jpg └── README.md /00-03_project_files/app/controllers/home.php: -------------------------------------------------------------------------------- 1 | "; 7 | print_r($data); 8 | echo ""; 9 | } 10 | 11 | function views_path($view) 12 | { 13 | if(file_exists("../app/views/$view.view.php")){ 14 | return "../app/views/$view.view.php"; 15 | }else{ 16 | echo "view '$view' not found"; 17 | } 18 | } -------------------------------------------------------------------------------- /00-03_project_files/app/core/init.php: -------------------------------------------------------------------------------- 1 | Home Page 2 |

-------------------------------------------------------------------------------- /00-03_project_files/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/pos.png -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fad, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/less/_list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: (@fa-li-width * 5/4); 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import '_variables.less'; 6 | @import '_shims.less'; 7 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: $fa-fw-width; 6 | } 7 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'shims'; 7 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/fontawesome-free-5.15.2-web/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/1558521918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/1558521918.png -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/1601525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/1601525.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/3f9f908==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/3f9f908==h400=w400.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/5e13c2ffb1d1a1be069f06bf_upc-00852201007100-glamor-frontpackageglamor-2019-04-04t15-16-19-8cae4770-bf4f-4f9b-b7e4-909477b4c491._TTD_._SR600,600_._QL100_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/5e13c2ffb1d1a1be069f06bf_upc-00852201007100-glamor-frontpackageglamor-2019-04-04t15-16-19-8cae4770-bf4f-4f9b-b7e4-909477b4c491._TTD_._SR600,600_._QL100_.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/7UP-300x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/7UP-300x300.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/caramel-moolatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/caramel-moolatte.png -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/drinks_cola_zero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/drinks_cola_zero.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/fast-food-1559854913.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/fast-food-1559854913.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/fast-food-frozen-beverages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/fast-food-frozen-beverages.jpeg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/fast-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/fast-food.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/image.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/images5.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/shutterstock_172259846-740x491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/shutterstock_172259846-740x491.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/unnamed.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/00-03_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg -------------------------------------------------------------------------------- /00-03_project_files/public/index.php: -------------------------------------------------------------------------------- 1 | "; 7 | print_r($data); 8 | echo ""; 9 | } 10 | 11 | function views_path($view) 12 | { 13 | if(file_exists("../app/views/$view.view.php")){ 14 | return "../app/views/$view.view.php"; 15 | }else{ 16 | echo "view '$view' not found"; 17 | } 18 | } 19 | 20 | function esc($str) 21 | { 22 | return htmlspecialchars($str); 23 | } -------------------------------------------------------------------------------- /04-10_project_files/app/core/init.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /04-10_project_files/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/pos.png -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/1558521918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/1558521918.png -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/1601525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/1601525.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/3f9f908==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/3f9f908==h400=w400.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/7UP-300x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/7UP-300x300.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/caramel-moolatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/caramel-moolatte.png -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/drinks_cola_zero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/drinks_cola_zero.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/fast-food-1559854913.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/fast-food-1559854913.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/fast-food-frozen-beverages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/fast-food-frozen-beverages.jpeg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/fast-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/fast-food.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/image.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/images5.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/shutterstock_172259846-740x491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/shutterstock_172259846-740x491.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/unnamed.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/wave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/wave.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /04-10_project_files/public/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/04-10_project_files/public/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /04-10_project_files/public/index.php: -------------------------------------------------------------------------------- 1 | first(['id'=>$id]); 9 | 10 | if($_SERVER['REQUEST_METHOD'] == "POST" && $row) 11 | { 12 | 13 | $sale->delete($row['id']); 14 | 15 | redirect('admin&tab=sales'); 16 | 17 | 18 | } 19 | 20 | 21 | require views_path('sales/sale-delete'); 22 | 23 | -------------------------------------------------------------------------------- /104-118_project_files/app/core/config.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

Access Denied!

6 |
7 |
8 |
9 | 10 | -------------------------------------------------------------------------------- /104-118_project_files/app/views/partials/footer.view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /104-118_project_files/public/assets/css/main.css: -------------------------------------------------------------------------------- 1 | body a{ 2 | text-decoration: none; 3 | } -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/1558521918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/1558521918.png -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/1601525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/1601525.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/3f9f908==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/3f9f908==h400=w400.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/7UP-300x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/7UP-300x300.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/caramel-moolatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/caramel-moolatte.png -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/drinks_cola_zero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/drinks_cola_zero.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/fast-food-1559854913.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/fast-food-1559854913.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/fast-food-frozen-beverages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/fast-food-frozen-beverages.jpeg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/fast-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/fast-food.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/image.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/images5.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/no_image.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/shutterstock_172259846-740x491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/shutterstock_172259846-740x491.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/unnamed.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/user_female.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/user_female.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/user_male.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/user_male.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/wave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/wave.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /104-118_project_files/public/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/104-118_project_files/public/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /104-118_project_files/public/file.vbs: -------------------------------------------------------------------------------- 1 | set obj = CreateObject("WScript.Shell") 2 | obj.SendKeys("~") 3 | set obj = Nothing -------------------------------------------------------------------------------- /104-118_project_files/public/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/1558521918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/1558521918.png -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/1601525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/1601525.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/3f9f908==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/3f9f908==h400=w400.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/7UP-300x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/7UP-300x300.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/caramel-moolatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/caramel-moolatte.png -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/drinks_cola_zero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/drinks_cola_zero.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/fast-food-1559854913.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/fast-food-1559854913.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/fast-food-frozen-beverages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/fast-food-frozen-beverages.jpeg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/fast-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/fast-food.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/image.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/images5.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/shutterstock_172259846-740x491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/shutterstock_172259846-740x491.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/unnamed.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/wave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/wave.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /11-28_project_files/public/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/11-28_project_files/public/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /11-28_project_files/public/index.php: -------------------------------------------------------------------------------- 1 | query("select * from products order by id desc"); 11 | } 12 | 13 | require views_path('admin/admin'); 14 | 15 | -------------------------------------------------------------------------------- /29-42_project_files/app/controllers/home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /29-42_project_files/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/pos.png -------------------------------------------------------------------------------- /29-42_project_files/public/assets/css/main.css: -------------------------------------------------------------------------------- 1 | body a{ 2 | text-decoration: none; 3 | } -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/1558521918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/1558521918.png -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/1601525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/1601525.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/3f9f908==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/3f9f908==h400=w400.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/7UP-300x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/7UP-300x300.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/caramel-moolatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/caramel-moolatte.png -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/drinks_cola_zero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/drinks_cola_zero.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/fast-food-1559854913.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/fast-food-1559854913.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/fast-food-frozen-beverages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/fast-food-frozen-beverages.jpeg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/fast-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/fast-food.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/image.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/images5.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/shutterstock_172259846-740x491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/shutterstock_172259846-740x491.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/unnamed.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/wave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/wave.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /29-42_project_files/public/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/29-42_project_files/public/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /29-42_project_files/public/index.php: -------------------------------------------------------------------------------- 1 | query("select * from products order by id desc"); 11 | } 12 | 13 | require views_path('admin/admin'); 14 | 15 | -------------------------------------------------------------------------------- /43-47_project_files/app/controllers/ajax.php: -------------------------------------------------------------------------------- 1 | getAll(); 8 | 9 | if($rows){ 10 | 11 | foreach ($rows as $key => $row) { 12 | 13 | $rows[$key]['description'] = strtoupper($row['description']); 14 | $rows[$key]['image'] = crop($row['image']); 15 | } 16 | echo json_encode($rows); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /43-47_project_files/app/controllers/home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /43-47_project_files/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/pos.png -------------------------------------------------------------------------------- /43-47_project_files/public/assets/css/main.css: -------------------------------------------------------------------------------- 1 | body a{ 2 | text-decoration: none; 3 | } -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/1558521918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/1558521918.png -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/1601525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/1601525.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/3f9f908==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/3f9f908==h400=w400.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/7UP-300x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/7UP-300x300.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/caramel-moolatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/caramel-moolatte.png -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/drinks_cola_zero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/drinks_cola_zero.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/fast-food-1559854913.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/fast-food-1559854913.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/fast-food-frozen-beverages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/fast-food-frozen-beverages.jpeg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/fast-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/fast-food.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/image.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/images5.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/shutterstock_172259846-740x491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/shutterstock_172259846-740x491.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/unnamed.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/wave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/wave.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /43-47_project_files/public/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/43-47_project_files/public/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /43-47_project_files/public/index.php: -------------------------------------------------------------------------------- 1 | query("select * from products order by id desc"); 11 | } 12 | 13 | require views_path('admin/admin'); 14 | 15 | -------------------------------------------------------------------------------- /48-56_project_files/app/controllers/home.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /48-56_project_files/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/pos.png -------------------------------------------------------------------------------- /48-56_project_files/public/assets/css/main.css: -------------------------------------------------------------------------------- 1 | body a{ 2 | text-decoration: none; 3 | } -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/1558521918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/1558521918.png -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/1601525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/1601525.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/3f9f908==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/3f9f908==h400=w400.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/7UP-300x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/7UP-300x300.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/caramel-moolatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/caramel-moolatte.png -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/drinks_cola_zero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/drinks_cola_zero.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/fast-food-1559854913.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/fast-food-1559854913.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/fast-food-frozen-beverages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/fast-food-frozen-beverages.jpeg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/fast-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/fast-food.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/image.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/images5.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/shutterstock_172259846-740x491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/shutterstock_172259846-740x491.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/unnamed.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/wave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/wave.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /48-56_project_files/public/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/48-56_project_files/public/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /48-56_project_files/public/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

Access Denied!

6 |
7 |
8 |
9 | 10 | -------------------------------------------------------------------------------- /57-76_project_files/app/views/partials/footer.view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /57-76_project_files/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/pos.png -------------------------------------------------------------------------------- /57-76_project_files/public/assets/css/main.css: -------------------------------------------------------------------------------- 1 | body a{ 2 | text-decoration: none; 3 | } -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/1558521918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/1558521918.png -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/1601525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/1601525.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/3f9f908==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/3f9f908==h400=w400.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/7UP-300x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/7UP-300x300.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/caramel-moolatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/caramel-moolatte.png -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/drinks_cola_zero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/drinks_cola_zero.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/fast-food-1559854913.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/fast-food-1559854913.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/fast-food-frozen-beverages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/fast-food-frozen-beverages.jpeg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/fast-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/fast-food.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/image.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/images5.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/no_image.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/shutterstock_172259846-740x491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/shutterstock_172259846-740x491.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/unnamed.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/user_female.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/user_female.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/user_male.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/user_male.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/wave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/wave.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /57-76_project_files/public/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/57-76_project_files/public/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /57-76_project_files/public/index.php: -------------------------------------------------------------------------------- 1 | first(['id'=>$id]); 9 | 10 | if($_SERVER['REQUEST_METHOD'] == "POST" && $row) 11 | { 12 | 13 | $sale->delete($row['id']); 14 | 15 | redirect('admin&tab=sales'); 16 | 17 | 18 | } 19 | 20 | 21 | require views_path('sales/sale-delete'); 22 | 23 | -------------------------------------------------------------------------------- /77-103_project_files/app/core/config.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

Access Denied!

6 |
7 |
8 |
9 | 10 | -------------------------------------------------------------------------------- /77-103_project_files/app/views/partials/footer.view.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /77-103_project_files/pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/pos.png -------------------------------------------------------------------------------- /77-103_project_files/public/assets/css/main.css: -------------------------------------------------------------------------------- 1 | body a{ 2 | text-decoration: none; 3 | } -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/1558521918.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/1558521918.png -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/1601525.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/1601525.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/3f9f908==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/3f9f908==h400=w400.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/7016bc927c7e484b3060b7a99ba5877cf8b06740-00==h400=w400.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/7UP-300x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/7UP-300x300.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/8d0eada735d7fc9d6abdb4bb800c0fdc46f2a262-00==h400=w400.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/caramel-moolatte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/caramel-moolatte.png -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/drinks_cola_zero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/drinks_cola_zero.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/fast-food-1559854913.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/fast-food-1559854913.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/fast-food-drinks-coffee-soft-drink-wallpaper.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/fast-food-frozen-beverages.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/fast-food-frozen-beverages.jpeg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/fast-food-png-most-popular-fast-food-snacks-in-your-area-and-most--3.png -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/fast-food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/fast-food.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/image.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/images5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/images5.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/kisspng-soft-drink-coca-cola-pepsi-one-pepsi-max-pepsi-png-file-5a7527a82193c3.3912714915176273041375.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/no_image.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/png-clipart-pepsi-cup-with-soda-illustration-pepsi-pizza-fizzy-drinks-cola-french-fries-pepsi-7-up-diet-pepsi-thumbnail.png -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/png-clipart-tango-fizzy-drinks-pepsi-apple-juice-beverage-can-fast-food-packaging-food-apple-juice-thumbnail.png -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/png-transparent-coca-cola-disposable-cup-coca-cola-soft-drink-pepsi-max-fast-food-coca-cola-cup-food-cola-world-cup.png -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/sd-aspect-1450109349-12232690-10153780376824489-932156246676940945-o.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/shutterstock_172259846-740x491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/shutterstock_172259846-740x491.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/unnamed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/unnamed.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/user_female.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/user_female.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/user_male.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/user_male.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/wave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/wave.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/images/wh-best-sparkling-waters-1574094721.jpg -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /77-103_project_files/public/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Eathorne2/simple-php-js-point-of-sale/438bc1d1398017adceca1c3cac2ae8af43cda6e2/77-103_project_files/public/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /77-103_project_files/public/index.php: -------------------------------------------------------------------------------- 1 |