36 |
--------------------------------------------------------------------------------
/admin/topheader.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/adminlogin.php:
--------------------------------------------------------------------------------
1 |
15 |
16 |
19 |
--------------------------------------------------------------------------------
/cart.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
12 |
--------------------------------------------------------------------------------
/checkout_process.php:
--------------------------------------------------------------------------------
1 | 0) {
32 | $sql2="SELECT MAX(order_id) AS max_val from `orders_info`";
33 | $runquery1=mysqli_query($con,$sql2);
34 | $row = mysqli_fetch_array($runquery1);
35 | $order_id= $row["max_val"];
36 | $order_id=$order_id+1;
37 | echo( mysqli_error($con));
38 | }
39 |
40 | $sql = "INSERT INTO `orders_info`
41 | (`order_id`,`user_id`,`f_name`, `email`,`address`,
42 | `city`, `state`, `zip`, `cardname`,`cardnumber`,`expdate`,`prod_count`,`total_amt`,`cvv`)
43 | VALUES ($order_id, '$user_id','$f_name','$email',
44 | '$address', '$city', '$state', '$zip','$cardname','$cardnumberstr','$expdate','$total_count','$prod_total','$cvv')";
45 |
46 |
47 | if(mysqli_query($con,$sql)){
48 | $i=1;
49 | $prod_id_=0;
50 | $prod_price_=0;
51 | $prod_qty_=0;
52 | while($i<=$total_count){
53 | $str=(string)$i;
54 | $prod_id_+$str = $_POST['prod_id_'.$i];
55 | $prod_id=$prod_id_+$str;
56 | $prod_price_+$str = $_POST['prod_price_'.$i];
57 | $prod_price=$prod_price_+$str;
58 | $prod_qty_+$str = $_POST['prod_qty_'.$i];
59 | $prod_qty=$prod_qty_+$str;
60 | $sub_total=(int)$prod_price*(int)$prod_qty;
61 | $sql1="INSERT INTO `order_products`
62 | (`order_pro_id`,`order_id`,`product_id`,`qty`,`amt`)
63 | VALUES (NULL, '$order_id','$prod_id','$prod_qty','$sub_total')";
64 | mysqli_query($con,"UPDATE products set qty=qty-'$prod_qty' where product_id='$prod_id'")or die("Query 2 is inncorrect..........");
65 |
66 | if(mysqli_query($con,$sql1)){
67 | $del_sql="DELETE from cart where user_id=$user_id";
68 | if(mysqli_query($con,$del_sql)){
69 | echo"";
70 | }else{
71 | echo(mysqli_error($con));
72 | }
73 |
74 | }else{
75 | echo(mysqli_error($con));
76 | }
77 | $i++;
78 |
79 |
80 | }
81 | }else{
82 |
83 | echo(mysqli_error($con));
84 |
85 | }
86 |
87 | }else{
88 | echo"";
89 | }
90 |
91 |
92 |
93 |
94 |
95 | ?>
--------------------------------------------------------------------------------
/config.php:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/css/accountbtn.css:
--------------------------------------------------------------------------------
1 |
2 |
3 | .dropdownn {
4 | position: relative;
5 | display: inline-block;
6 | }
7 |
8 | .dropdownn-content {
9 | display: none;
10 | position: absolute;
11 | background-color: #15161D;
12 | min-width: 160px;
13 | box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
14 | z-index: 1;
15 | }
16 |
17 | .dropdownn-content a {
18 | color: black;
19 | padding: 12px 16px;
20 | text-decoration: none;
21 | display: block;
22 | }
23 |
24 | .dropdownn-content a:hover {background-color: #15161D}
25 |
26 | .dropdownn:hover .dropdownn-content {
27 | display: block;
28 | }
29 |
30 |
31 |
--------------------------------------------------------------------------------
/css/nouislider.min.css:
--------------------------------------------------------------------------------
1 | /*! nouislider - 10.0.0 - 2017-05-28 14:52:48 */.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base{width:100%;height:100%;position:relative;z-index:1}.noUi-connect{position:absolute;right:0;top:0;left:0;bottom:0}.noUi-origin{position:absolute;height:0;width:0}.noUi-handle{position:relative;z-index:1}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:top .3s,right .3s,bottom .3s,left .3s;transition:top .3s,right .3s,bottom .3s,left .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-base,.noUi-handle{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connect{background:#3FB8AF;border-radius:4px;box-shadow:inset 0 0 3px rgba(51,51,51,.45);-webkit-transition:background 450ms;transition:background 450ms}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-large,.noUi-marker-sub{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate3d(-50%,50%,0);transform:translate3d(-50%,50%,0)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0);padding-left:25px}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}
--------------------------------------------------------------------------------
/css/slick-theme.css:
--------------------------------------------------------------------------------
1 | @charset 'UTF-8';
2 | /* Slider */
3 | .slick-loading .slick-list
4 | {
5 | background: #fff url('./ajax-loader.gif') center center no-repeat;
6 | }
7 |
8 | /* Icons */
9 | @font-face
10 | {
11 | font-family: 'slick';
12 | font-weight: normal;
13 | font-style: normal;
14 |
15 | src: url('./fonts/slick.eot');
16 | src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
17 | }
18 | /* Arrows */
19 | .slick-prev,
20 | .slick-next
21 | {
22 | font-size: 0;
23 | line-height: 0;
24 |
25 | position: absolute;
26 | top: 50%;
27 |
28 | display: block;
29 |
30 | width: 20px;
31 | height: 20px;
32 | padding: 0;
33 | -webkit-transform: translate(0, -50%);
34 | -ms-transform: translate(0, -50%);
35 | transform: translate(0, -50%);
36 |
37 | cursor: pointer;
38 |
39 | color: transparent;
40 | border: none;
41 | outline: none;
42 | background: transparent;
43 | }
44 | .slick-prev:hover,
45 | .slick-prev:focus,
46 | .slick-next:hover,
47 | .slick-next:focus
48 | {
49 | color: transparent;
50 | outline: none;
51 | background: transparent;
52 | }
53 | .slick-prev:hover:before,
54 | .slick-prev:focus:before,
55 | .slick-next:hover:before,
56 | .slick-next:focus:before
57 | {
58 | opacity: 1;
59 | }
60 | .slick-prev.slick-disabled:before,
61 | .slick-next.slick-disabled:before
62 | {
63 | opacity: .25;
64 | }
65 |
66 | .slick-prev:before,
67 | .slick-next:before
68 | {
69 | font-family: 'slick';
70 | font-size: 20px;
71 | line-height: 1;
72 |
73 | opacity: .75;
74 | color: white;
75 |
76 | -webkit-font-smoothing: antialiased;
77 | -moz-osx-font-smoothing: grayscale;
78 | }
79 |
80 | .slick-prev
81 | {
82 | left: -25px;
83 | }
84 | [dir='rtl'] .slick-prev
85 | {
86 | right: -25px;
87 | left: auto;
88 | }
89 | .slick-prev:before
90 | {
91 | content: '←';
92 | }
93 | [dir='rtl'] .slick-prev:before
94 | {
95 | content: '→';
96 | }
97 |
98 | .slick-next
99 | {
100 | right: -25px;
101 | }
102 | [dir='rtl'] .slick-next
103 | {
104 | right: auto;
105 | left: -25px;
106 | }
107 | .slick-next:before
108 | {
109 | content: '→';
110 | }
111 | [dir='rtl'] .slick-next:before
112 | {
113 | content: '←';
114 | }
115 |
116 | /* Dots */
117 | .slick-dotted.slick-slider
118 | {
119 | margin-bottom: 30px;
120 | }
121 |
122 | .slick-dots
123 | {
124 | position: absolute;
125 | bottom: -25px;
126 |
127 | display: block;
128 |
129 | width: 100%;
130 | padding: 0;
131 | margin: 0;
132 |
133 | list-style: none;
134 |
135 | text-align: center;
136 | }
137 | .slick-dots li
138 | {
139 | position: relative;
140 |
141 | display: inline-block;
142 |
143 | width: 20px;
144 | height: 20px;
145 | margin: 0 5px;
146 | padding: 0;
147 |
148 | cursor: pointer;
149 | }
150 | .slick-dots li button
151 | {
152 | font-size: 0;
153 | line-height: 0;
154 |
155 | display: block;
156 |
157 | width: 20px;
158 | height: 20px;
159 | padding: 5px;
160 |
161 | cursor: pointer;
162 |
163 | color: transparent;
164 | border: 0;
165 | outline: none;
166 | background: transparent;
167 | }
168 | .slick-dots li button:hover,
169 | .slick-dots li button:focus
170 | {
171 | outline: none;
172 | }
173 | .slick-dots li button:hover:before,
174 | .slick-dots li button:focus:before
175 | {
176 | opacity: 1;
177 | }
178 | .slick-dots li button:before
179 | {
180 | font-family: 'slick';
181 | font-size: 6px;
182 | line-height: 20px;
183 |
184 | position: absolute;
185 | top: 0;
186 | left: 0;
187 |
188 | width: 20px;
189 | height: 20px;
190 |
191 | content: '•';
192 | text-align: center;
193 |
194 | opacity: .25;
195 | color: black;
196 |
197 | -webkit-font-smoothing: antialiased;
198 | -moz-osx-font-smoothing: grayscale;
199 | }
200 | .slick-dots li.slick-active button:before
201 | {
202 | opacity: .75;
203 | color: black;
204 | }
205 |
--------------------------------------------------------------------------------
/css/slick.css:
--------------------------------------------------------------------------------
1 | /* Slider */
2 | .slick-slider
3 | {
4 | position: relative;
5 |
6 | display: block;
7 | box-sizing: border-box;
8 |
9 | -webkit-user-select: none;
10 | -moz-user-select: none;
11 | -ms-user-select: none;
12 | user-select: none;
13 |
14 | -webkit-touch-callout: none;
15 | -khtml-user-select: none;
16 | -ms-touch-action: pan-y;
17 | touch-action: pan-y;
18 | -webkit-tap-highlight-color: transparent;
19 | }
20 |
21 | .slick-list
22 | {
23 | position: relative;
24 |
25 | display: block;
26 | overflow: hidden;
27 |
28 | margin: 0;
29 | padding: 0;
30 | }
31 | .slick-list:focus
32 | {
33 | outline: none;
34 | }
35 | .slick-list.dragging
36 | {
37 | cursor: pointer;
38 | cursor: hand;
39 | }
40 |
41 | .slick-slider .slick-track,
42 | .slick-slider .slick-list
43 | {
44 | -webkit-transform: translate3d(0, 0, 0);
45 | -moz-transform: translate3d(0, 0, 0);
46 | -ms-transform: translate3d(0, 0, 0);
47 | -o-transform: translate3d(0, 0, 0);
48 | transform: translate3d(0, 0, 0);
49 | }
50 |
51 | .slick-track
52 | {
53 | position: relative;
54 | top: 0;
55 | left: 0;
56 |
57 | display: block;
58 | margin-left: auto;
59 | margin-right: auto;
60 | }
61 | .slick-track:before,
62 | .slick-track:after
63 | {
64 | display: table;
65 |
66 | content: '';
67 | }
68 | .slick-track:after
69 | {
70 | clear: both;
71 | }
72 | .slick-loading .slick-track
73 | {
74 | visibility: hidden;
75 | }
76 |
77 | .slick-slide
78 | {
79 | display: none;
80 | float: left;
81 |
82 | height: 100%;
83 | min-height: 1px;
84 | }
85 | [dir='rtl'] .slick-slide
86 | {
87 | float: right;
88 | }
89 | .slick-slide img
90 | {
91 | display: block;
92 | }
93 | .slick-slide.slick-loading img
94 | {
95 | display: none;
96 | }
97 | .slick-slide.dragging img
98 | {
99 | pointer-events: none;
100 | }
101 | .slick-initialized .slick-slide
102 | {
103 | display: block;
104 | }
105 | .slick-loading .slick-slide
106 | {
107 | visibility: hidden;
108 | }
109 | .slick-vertical .slick-slide
110 | {
111 | display: block;
112 |
113 | height: auto;
114 |
115 | border: 1px solid transparent;
116 | }
117 | .slick-arrow.slick-hidden {
118 | display: none;
119 | }
120 |
--------------------------------------------------------------------------------
/db.php:
--------------------------------------------------------------------------------
1 |
18 |
--------------------------------------------------------------------------------
/error.php:
--------------------------------------------------------------------------------
1 | 0) : ?>
2 |
7 |
--------------------------------------------------------------------------------
/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/HELP-US-OUT.txt:
--------------------------------------------------------------------------------
1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project,
2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome,
3 | comprehensive icon sets or copy and paste your own.
4 |
5 | Please. Check it out.
6 |
7 | -Dave Gandy
8 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/animated.less:
--------------------------------------------------------------------------------
1 | // Animated Icons
2 | // --------------------------
3 |
4 | .@{fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .@{fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/bordered-pulled.less:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em @fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .@{fa-css-prefix}-pull-left { float: left; }
11 | .@{fa-css-prefix}-pull-right { float: right; }
12 |
13 | .@{fa-css-prefix} {
14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; }
15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 |
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 |
22 | .@{fa-css-prefix} {
23 | &.pull-left { margin-right: .3em; }
24 | &.pull-right { margin-left: .3em; }
25 | }
26 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/font-awesome.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables.less";
7 | @import "mixins.less";
8 | @import "path.less";
9 | @import "core.less";
10 | @import "larger.less";
11 | @import "fixed-width.less";
12 | @import "list.less";
13 | @import "bordered-pulled.less";
14 | @import "animated.less";
15 | @import "rotated-flipped.less";
16 | @import "stacked.less";
17 | @import "icons.less";
18 | @import "screen-reader.less";
19 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/larger.less:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .@{fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .@{fa-css-prefix}-2x { font-size: 2em; }
11 | .@{fa-css-prefix}-3x { font-size: 3em; }
12 | .@{fa-css-prefix}-4x { font-size: 4em; }
13 | .@{fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: @fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .@{fa-css-prefix}-li {
11 | position: absolute;
12 | left: -@fa-li-width;
13 | width: @fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.@{fa-css-prefix}-lg {
17 | left: (-@fa-li-width + (4em / 14));
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/mixins.less:
--------------------------------------------------------------------------------
1 | // Mixins
2 | // --------------------------
3 |
4 | .fa-icon() {
5 | display: inline-block;
6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
14 | .fa-icon-rotate(@degrees, @rotation) {
15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
16 | -webkit-transform: rotate(@degrees);
17 | -ms-transform: rotate(@degrees);
18 | transform: rotate(@degrees);
19 | }
20 |
21 | .fa-icon-flip(@horiz, @vert, @rotation) {
22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)";
23 | -webkit-transform: scale(@horiz, @vert);
24 | -ms-transform: scale(@horiz, @vert);
25 | transform: scale(@horiz, @vert);
26 | }
27 |
28 |
29 | // Only display content to screen readers. A la Bootstrap 4.
30 | //
31 | // See: http://a11yproject.com/posts/how-to-hide-content/
32 |
33 | .sr-only() {
34 | position: absolute;
35 | width: 1px;
36 | height: 1px;
37 | padding: 0;
38 | margin: -1px;
39 | overflow: hidden;
40 | clip: rect(0,0,0,0);
41 | border: 0;
42 | }
43 |
44 | // Use in conjunction with .sr-only to only display content when it's focused.
45 | //
46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
47 | //
48 | // Credit: HTML5 Boilerplate
49 |
50 | .sr-only-focusable() {
51 | &:active,
52 | &:focus {
53 | position: static;
54 | width: auto;
55 | height: auto;
56 | margin: 0;
57 | overflow: visible;
58 | clip: auto;
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/path.less:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/rotated-flipped.less:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
7 |
8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .@{fa-css-prefix}-rotate-90,
15 | :root .@{fa-css-prefix}-rotate-180,
16 | :root .@{fa-css-prefix}-rotate-270,
17 | :root .@{fa-css-prefix}-flip-horizontal,
18 | :root .@{fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/screen-reader.less:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { .sr-only(); }
5 | .sr-only-focusable { .sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/stacked.less:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; }
21 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_animated.scss:
--------------------------------------------------------------------------------
1 | // Spinning Icons
2 | // --------------------------
3 |
4 | .#{$fa-css-prefix}-spin {
5 | -webkit-animation: fa-spin 2s infinite linear;
6 | animation: fa-spin 2s infinite linear;
7 | }
8 |
9 | .#{$fa-css-prefix}-pulse {
10 | -webkit-animation: fa-spin 1s infinite steps(8);
11 | animation: fa-spin 1s infinite steps(8);
12 | }
13 |
14 | @-webkit-keyframes fa-spin {
15 | 0% {
16 | -webkit-transform: rotate(0deg);
17 | transform: rotate(0deg);
18 | }
19 | 100% {
20 | -webkit-transform: rotate(359deg);
21 | transform: rotate(359deg);
22 | }
23 | }
24 |
25 | @keyframes fa-spin {
26 | 0% {
27 | -webkit-transform: rotate(0deg);
28 | transform: rotate(0deg);
29 | }
30 | 100% {
31 | -webkit-transform: rotate(359deg);
32 | transform: rotate(359deg);
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em $fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .#{$fa-css-prefix}-pull-left { float: left; }
11 | .#{$fa-css-prefix}-pull-right { float: right; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
16 | }
17 |
18 | /* Deprecated as of 4.4.0 */
19 | .pull-right { float: right; }
20 | .pull-left { float: left; }
21 |
22 | .#{$fa-css-prefix} {
23 | &.pull-left { margin-right: .3em; }
24 | &.pull-right { margin-left: .3em; }
25 | }
26 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_mixins.scss:
--------------------------------------------------------------------------------
1 | // Mixins
2 | // --------------------------
3 |
4 | @mixin fa-icon() {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
14 | @mixin fa-icon-rotate($degrees, $rotation) {
15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})";
16 | -webkit-transform: rotate($degrees);
17 | -ms-transform: rotate($degrees);
18 | transform: rotate($degrees);
19 | }
20 |
21 | @mixin fa-icon-flip($horiz, $vert, $rotation) {
22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)";
23 | -webkit-transform: scale($horiz, $vert);
24 | -ms-transform: scale($horiz, $vert);
25 | transform: scale($horiz, $vert);
26 | }
27 |
28 |
29 | // Only display content to screen readers. A la Bootstrap 4.
30 | //
31 | // See: http://a11yproject.com/posts/how-to-hide-content/
32 |
33 | @mixin sr-only {
34 | position: absolute;
35 | width: 1px;
36 | height: 1px;
37 | padding: 0;
38 | margin: -1px;
39 | overflow: hidden;
40 | clip: rect(0,0,0,0);
41 | border: 0;
42 | }
43 |
44 | // Use in conjunction with .sr-only to only display content when it's focused.
45 | //
46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
47 | //
48 | // Credit: HTML5 Boilerplate
49 |
50 | @mixin sr-only-focusable {
51 | &:active,
52 | &:focus {
53 | position: static;
54 | width: auto;
55 | height: auto;
56 | margin: 0;
57 | overflow: visible;
58 | clip: auto;
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_path.scss:
--------------------------------------------------------------------------------
1 | /* FONT PATH
2 | * -------------------------- */
3 |
4 | @font-face {
5 | font-family: 'FontAwesome';
6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}');
7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'),
10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg');
12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
13 | font-weight: normal;
14 | font-style: normal;
15 | }
16 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7 |
8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10 |
11 | // Hook for IE8-9
12 | // -------------------------
13 |
14 | :root .#{$fa-css-prefix}-rotate-90,
15 | :root .#{$fa-css-prefix}-rotate-180,
16 | :root .#{$fa-css-prefix}-rotate-270,
17 | :root .#{$fa-css-prefix}-flip-horizontal,
18 | :root .#{$fa-css-prefix}-flip-vertical {
19 | filter: none;
20 | }
21 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_screen-reader.scss:
--------------------------------------------------------------------------------
1 | // Screen Readers
2 | // -------------------------
3 |
4 | .sr-only { @include sr-only(); }
5 | .sr-only-focusable { @include sr-only-focusable(); }
6 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_stacked.scss:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "animated";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 | @import "screen-reader";
19 |
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-Black.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-Black.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-BlackItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-BlackItalic.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-Bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-Bold.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-BoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-BoldItalic.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-ExtraBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-ExtraBold.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-ExtraLight.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-ExtraLight.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-ExtraLightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-ExtraLightItalic.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-Italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-Italic.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-Light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-Light.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-LightItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-LightItalic.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-Medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-Medium.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-MediumItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-MediumItalic.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-Regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-Regular.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-SemiBold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-SemiBold.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-SemiBoldItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-SemiBoldItalic.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-Thin.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/Montserrat-ThinItalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/montserrat/Montserrat-ThinItalic.ttf
--------------------------------------------------------------------------------
/fonts/montserrat/OFL.txt:
--------------------------------------------------------------------------------
1 | Copyright 2011 The Montserrat Project Authors (https://github.com/JulietaUla/Montserrat)
2 |
3 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
4 | This license is copied below, and is also available with a FAQ at:
5 | http://scripts.sil.org/OFL
6 |
7 |
8 | -----------------------------------------------------------
9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 | -----------------------------------------------------------
11 |
12 | PREAMBLE
13 | The goals of the Open Font License (OFL) are to stimulate worldwide
14 | development of collaborative font projects, to support the font creation
15 | efforts of academic and linguistic communities, and to provide a free and
16 | open framework in which fonts may be shared and improved in partnership
17 | with others.
18 |
19 | The OFL allows the licensed fonts to be used, studied, modified and
20 | redistributed freely as long as they are not sold by themselves. The
21 | fonts, including any derivative works, can be bundled, embedded,
22 | redistributed and/or sold with any software provided that any reserved
23 | names are not used by derivative works. The fonts and derivatives,
24 | however, cannot be released under any other type of license. The
25 | requirement for fonts to remain under this license does not apply
26 | to any document created using the fonts or their derivatives.
27 |
28 | DEFINITIONS
29 | "Font Software" refers to the set of files released by the Copyright
30 | Holder(s) under this license and clearly marked as such. This may
31 | include source files, build scripts and documentation.
32 |
33 | "Reserved Font Name" refers to any names specified as such after the
34 | copyright statement(s).
35 |
36 | "Original Version" refers to the collection of Font Software components as
37 | distributed by the Copyright Holder(s).
38 |
39 | "Modified Version" refers to any derivative made by adding to, deleting,
40 | or substituting -- in part or in whole -- any of the components of the
41 | Original Version, by changing formats or by porting the Font Software to a
42 | new environment.
43 |
44 | "Author" refers to any designer, engineer, programmer, technical
45 | writer or other person who contributed to the Font Software.
46 |
47 | PERMISSION & CONDITIONS
48 | Permission is hereby granted, free of charge, to any person obtaining
49 | a copy of the Font Software, to use, study, copy, merge, embed, modify,
50 | redistribute, and sell modified and unmodified copies of the Font
51 | Software, subject to the following conditions:
52 |
53 | 1) Neither the Font Software nor any of its individual components,
54 | in Original or Modified Versions, may be sold by itself.
55 |
56 | 2) Original or Modified Versions of the Font Software may be bundled,
57 | redistributed and/or sold with any software, provided that each copy
58 | contains the above copyright notice and this license. These can be
59 | included either as stand-alone text files, human-readable headers or
60 | in the appropriate machine-readable metadata fields within text or
61 | binary files as long as those fields can be easily viewed by the user.
62 |
63 | 3) No Modified Version of the Font Software may use the Reserved Font
64 | Name(s) unless explicit written permission is granted by the corresponding
65 | Copyright Holder. This restriction only applies to the primary font name as
66 | presented to the users.
67 |
68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69 | Software shall not be used to promote, endorse or advertise any
70 | Modified Version, except to acknowledge the contribution(s) of the
71 | Copyright Holder(s) and the Author(s) or with their explicit written
72 | permission.
73 |
74 | 5) The Font Software, modified or unmodified, in part or in whole,
75 | must be distributed entirely under this license, and must not be
76 | distributed under any other license. The requirement for fonts to
77 | remain under this license does not apply to any document created
78 | using the Font Software.
79 |
80 | TERMINATION
81 | This license becomes null and void if any of the above conditions are
82 | not met.
83 |
84 | DISCLAIMER
85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93 | OTHER DEALINGS IN THE FONT SOFTWARE.
94 |
--------------------------------------------------------------------------------
/fonts/poppins/Poppins-Black.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/fonts/poppins/Poppins-Black.ttf
--------------------------------------------------------------------------------
/footer.php:
--------------------------------------------------------------------------------
1 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
81 |
104 |
105 |
--------------------------------------------------------------------------------
/img/Capture.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/Capture.PNG
--------------------------------------------------------------------------------
/img/abbd7334ae84cb03 (1).jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/abbd7334ae84cb03 (1).jpg
--------------------------------------------------------------------------------
/img/banner1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/banner1.jpg
--------------------------------------------------------------------------------
/img/banner2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/banner2.jpg
--------------------------------------------------------------------------------
/img/banner3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/banner3.jpg
--------------------------------------------------------------------------------
/img/banner4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/banner4.jpg
--------------------------------------------------------------------------------
/img/banner_img4.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/banner_img4.gif
--------------------------------------------------------------------------------
/img/dress_shirt_PNG.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/dress_shirt_PNG.png
--------------------------------------------------------------------------------
/img/hotdeal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/hotdeal.png
--------------------------------------------------------------------------------
/img/icons/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/icons/favicon.ico
--------------------------------------------------------------------------------
/img/image.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/image.jpeg
--------------------------------------------------------------------------------
/img/img-01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/img-01.png
--------------------------------------------------------------------------------
/img/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/logo.png
--------------------------------------------------------------------------------
/img/product01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/product01.png
--------------------------------------------------------------------------------
/img/product02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/product02.png
--------------------------------------------------------------------------------
/img/product03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/product03.png
--------------------------------------------------------------------------------
/img/product04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/product04.png
--------------------------------------------------------------------------------
/img/product05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/product05.png
--------------------------------------------------------------------------------
/img/product06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/product06.png
--------------------------------------------------------------------------------
/img/product07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/product07.png
--------------------------------------------------------------------------------
/img/product08.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/product08.png
--------------------------------------------------------------------------------
/img/product09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/product09.png
--------------------------------------------------------------------------------
/img/shop01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/shop01.png
--------------------------------------------------------------------------------
/img/shop02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/shop02.png
--------------------------------------------------------------------------------
/img/shop03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/shop03.png
--------------------------------------------------------------------------------
/img/slider_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/img/slider_1.jpg
--------------------------------------------------------------------------------
/index.php:
--------------------------------------------------------------------------------
1 |
10 |
11 |
--------------------------------------------------------------------------------
/ins.txt:
--------------------------------------------------------------------------------
1 | To open admin - /admin/login.php
2 | admin username-admin
3 | pass-admin
4 |
5 |
6 | To open supplier- /supplier/login.php
7 |
--------------------------------------------------------------------------------
/js/jquery.zoom.min.js:
--------------------------------------------------------------------------------
1 | /*!
2 | Zoom 1.7.20
3 | license: MIT
4 | http://www.jacklmoore.com/zoom
5 | */
6 | (function(o){var t={url:!1,callback:!1,target:!1,duration:120,on:"mouseover",touch:!0,onZoomIn:!1,onZoomOut:!1,magnify:1};o.zoom=function(t,n,e,i){var u,c,r,a,m,l,s,f=o(t),h=f.css("position"),d=o(n);return t.style.position=/(absolute|fixed)/.test(h)?h:"relative",t.style.overflow="hidden",e.style.width=e.style.height="",o(e).addClass("zoomImg").css({position:"absolute",top:0,left:0,opacity:0,width:e.width*i,height:e.height*i,border:"none",maxWidth:"none",maxHeight:"none"}).appendTo(t),{init:function(){c=f.outerWidth(),u=f.outerHeight(),n===t?(a=c,r=u):(a=d.outerWidth(),r=d.outerHeight()),m=(e.width-c)/a,l=(e.height-u)/r,s=d.offset()},move:function(o){var t=o.pageX-s.left,n=o.pageY-s.top;n=Math.max(Math.min(n,r),0),t=Math.max(Math.min(t,a),0),e.style.left=t*-m+"px",e.style.top=n*-l+"px"}}},o.fn.zoom=function(n){return this.each(function(){var e=o.extend({},t,n||{}),i=e.target&&o(e.target)[0]||this,u=this,c=o(u),r=document.createElement("img"),a=o(r),m="mousemove.zoom",l=!1,s=!1;if(!e.url){var f=u.querySelector("img");if(f&&(e.url=f.getAttribute("data-src")||f.currentSrc||f.src),!e.url)return}c.one("zoom.destroy",function(o,t){c.off(".zoom"),i.style.position=o,i.style.overflow=t,r.onload=null,a.remove()}.bind(this,i.style.position,i.style.overflow)),r.onload=function(){function t(t){f.init(),f.move(t),a.stop().fadeTo(o.support.opacity?e.duration:0,1,o.isFunction(e.onZoomIn)?e.onZoomIn.call(r):!1)}function n(){a.stop().fadeTo(e.duration,0,o.isFunction(e.onZoomOut)?e.onZoomOut.call(r):!1)}var f=o.zoom(i,u,r,e.magnify);"grab"===e.on?c.on("mousedown.zoom",function(e){1===e.which&&(o(document).one("mouseup.zoom",function(){n(),o(document).off(m,f.move)}),t(e),o(document).on(m,f.move),e.preventDefault())}):"click"===e.on?c.on("click.zoom",function(e){return l?void 0:(l=!0,t(e),o(document).on(m,f.move),o(document).one("click.zoom",function(){n(),l=!1,o(document).off(m,f.move)}),!1)}):"toggle"===e.on?c.on("click.zoom",function(o){l?n():t(o),l=!l}):"mouseover"===e.on&&(f.init(),c.on("mouseenter.zoom",t).on("mouseleave.zoom",n).on(m,f.move)),e.touch&&c.on("touchstart.zoom",function(o){o.preventDefault(),s?(s=!1,n()):(s=!0,t(o.originalEvent.touches[0]||o.originalEvent.changedTouches[0]))}).on("touchmove.zoom",function(o){o.preventDefault(),f.move(o.originalEvent.touches[0]||o.originalEvent.changedTouches[0])}).on("touchend.zoom",function(o){o.preventDefault(),s&&(s=!1,n())}),o.isFunction(e.callback)&&e.callback.call(r)},r.setAttribute("role","presentation"),r.src=e.url})},o.fn.zoom.defaults=t})(window.jQuery);
--------------------------------------------------------------------------------
/js/main.js:
--------------------------------------------------------------------------------
1 | (function($) {
2 | "use strict"
3 |
4 | // Mobile Nav toggle
5 | $('.menu-toggle > a').on('click', function (e) {
6 | e.preventDefault();
7 | $('#responsive-nav').toggleClass('active');
8 | })
9 |
10 | // Fix cart dropdown from closing
11 | $('.cart-dropdown').on('click', function (e) {
12 | e.stopPropagation();
13 | });
14 |
15 |
16 | /////////////////////////////////////////
17 |
18 |
19 | // Products Slick
20 | $('.products-slick').each(function() {
21 | var $this = $(this),
22 | $nav = $this.attr('data-nav');
23 |
24 | $this.slick({
25 | slidesToShow: 4,
26 | slidesToScroll: 1,
27 | autoplay: true,
28 | infinite: true,
29 | speed: 300,
30 | dots: false,
31 | arrows: true,
32 | appendArrows: $nav ? $nav : false,
33 | responsive: [{
34 | breakpoint: 991,
35 | settings: {
36 | slidesToShow: 2,
37 | slidesToScroll: 1,
38 | }
39 | },
40 | {
41 | breakpoint: 480,
42 | settings: {
43 | slidesToShow: 1,
44 | slidesToScroll: 1,
45 | }
46 | },
47 | ]
48 | });
49 | });
50 |
51 | // Products Widget Slick
52 | $('.products-widget-slick').each(function() {
53 | var $this = $(this),
54 | $nav = $this.attr('data-nav');
55 |
56 | $this.slick({
57 | infinite: true,
58 | autoplay: true,
59 | speed: 300,
60 | dots: false,
61 | arrows: true,
62 | appendArrows: $nav ? $nav : false,
63 | });
64 | });
65 |
66 | /////////////////////////////////////////
67 |
68 | // Product Main img Slick
69 | $('#product-main-img').slick({
70 | infinite: true,
71 | speed: 300,
72 | dots: false,
73 | arrows: true,
74 | fade: true,
75 | asNavFor: '#product-imgs',
76 | });
77 |
78 | // Product imgs Slick
79 | $('#product-imgs').slick({
80 | slidesToShow: 3,
81 | slidesToScroll: 1,
82 | arrows: true,
83 | centerMode: true,
84 | focusOnSelect: true,
85 | centerPadding: 0,
86 | vertical: true,
87 | asNavFor: '#product-main-img',
88 | responsive: [{
89 | breakpoint: 991,
90 | settings: {
91 | vertical: false,
92 | arrows: false,
93 | dots: true,
94 | }
95 | },
96 | ]
97 | });
98 |
99 | // Product img zoom
100 | var zoomMainProduct = document.getElementById('product-main-img');
101 | if (zoomMainProduct) {
102 | $('#product-main-img .product-preview').zoom();
103 | }
104 |
105 |
106 |
107 | /////////////////////////////////////////
108 |
109 | // Input number
110 | $('.input-number').each(function() {
111 | var $this = $(this),
112 | $input = $this.find('input[type="number"]'),
113 | up = $this.find('.qty-up'),
114 | down = $this.find('.qty-down');
115 |
116 | down.on('click', function () {
117 | var value = parseInt($input.val()) - 1;
118 | value = value < 1 ? 1 : value;
119 | $input.val(value);
120 | $input.change();
121 | updatePriceSlider($this , value)
122 | })
123 |
124 | up.on('click', function () {
125 | var value = parseInt($input.val()) + 1;
126 | $input.val(value);
127 | $input.change();
128 | updatePriceSlider($this , value)
129 | })
130 | });
131 |
132 | var priceInputMax = document.getElementById('price-max'),
133 | priceInputMin = document.getElementById('price-min');
134 |
135 | priceInputMax.addEventListener('change', function(){
136 | updatePriceSlider($(this).parent() , this.value)
137 | });
138 |
139 | priceInputMin.addEventListener('change', function(){
140 | updatePriceSlider($(this).parent() , this.value)
141 | });
142 |
143 | function updatePriceSlider(elem , value) {
144 | if ( elem.hasClass('price-min') ) {
145 | console.log('min')
146 | priceSlider.noUiSlider.set([value, null]);
147 | } else if ( elem.hasClass('price-max')) {
148 | console.log('max')
149 | priceSlider.noUiSlider.set([null, value]);
150 | }
151 | }
152 |
153 | // Price Slider
154 | var priceSlider = document.getElementById('price-slider');
155 | if (priceSlider) {
156 | noUiSlider.create(priceSlider, {
157 | start: [1, 999],
158 | connect: true,
159 | step: 1,
160 | range: {
161 | 'min': 1,
162 | 'max': 999
163 | }
164 | });
165 |
166 | priceSlider.noUiSlider.on('update', function( values, handle ) {
167 | var value = values[handle];
168 | handle ? priceInputMax.value = value : priceInputMin.value = value
169 | });
170 | }
171 |
172 |
173 |
174 | })(jQuery);
175 |
--------------------------------------------------------------------------------
/js/main1.js:
--------------------------------------------------------------------------------
1 |
2 | (function ($) {
3 | "use strict";
4 |
5 |
6 | /*==================================================================
7 | [ Focus input ]*/
8 | $('.input100').each(function(){
9 | $(this).on('blur', function(){
10 | if($(this).val().trim() != "") {
11 | $(this).addClass('has-val');
12 | }
13 | else {
14 | $(this).removeClass('has-val');
15 | }
16 | })
17 | })
18 |
19 |
20 | /*==================================================================
21 | [ Validate ]*/
22 | var input = $('.validate-input .input100');
23 |
24 | $('.validate-form').on('submit',function(){
25 | var check = true;
26 |
27 | for(var i=0; i
61 |
62 | ";
63 | } else {
64 | header('Location: /index.php'); // default page
65 | }
66 |
67 |
68 | exit;
69 |
70 | }else{
71 | $email = mysqli_real_escape_string($con,$_POST["email"]);
72 | $password =md5($_POST["password"]) ;
73 | $sql = "SELECT * FROM admin_info WHERE admin_email = '$email' AND admin_password = '$password'";
74 | $run_query = mysqli_query($con,$sql);
75 | $count = mysqli_num_rows($run_query);
76 |
77 | //if user record is available in database then $count will be equal to 1
78 | if($count == 1){
79 | $row = mysqli_fetch_array($run_query);
80 | $_SESSION["uid"] = $row["admin_id"];
81 | $_SESSION["name"] = $row["admin_name"];
82 | $ip_add = getenv("REMOTE_ADDR");
83 | //we have created a cookie in login_form.php page so if that cookie is available means user is not login
84 |
85 |
86 | //if user is login from page we will send login_success
87 | echo "login_success";
88 |
89 | echo "";
90 | exit;
91 |
92 | }else{
93 | echo "Please register before login..!";
94 | exit();
95 | }
96 |
97 |
98 | }
99 |
100 |
101 | }
102 |
103 | ?>
--------------------------------------------------------------------------------
/logout.php:
--------------------------------------------------------------------------------
1 |
24 |
--------------------------------------------------------------------------------
/newslettter.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
Sign Up for the OFFERUPDATES
14 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/offersmail.php:
--------------------------------------------------------------------------------
1 |
11 | ×PLease Fill this field..!
12 |
13 | ";
14 | exit();
15 | }else{
16 | if(!preg_match($emailValidation,$email)){
17 | echo "
18 |
22 | ";
23 | exit();
24 | }
25 | $sql = "SELECT email_id FROM email_info WHERE email = '$email' LIMIT 1" ;
26 | $check_query = mysqli_query($con,$sql);
27 | $count_email = mysqli_num_rows($check_query);
28 | if($count_email > 0){
29 | echo "
30 |
34 | ";
35 | exit();
36 | }else{
37 |
38 | $sql = "INSERT INTO `email_info`
39 | (`email_id`, `email`)
40 | VALUES (NULL, '$email')";
41 | $run_query = mysqli_query($con,$sql);
42 | echo "
";
46 |
47 |
48 | }
49 |
50 |
51 | }
52 |
53 | }
54 | ?>
--------------------------------------------------------------------------------
/payment_success.php:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/product_images/1.0x0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1.0x0.jpg
--------------------------------------------------------------------------------
/product_images/12039452_525963140912391_6353341236808813360_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/12039452_525963140912391_6353341236808813360_n.png
--------------------------------------------------------------------------------
/product_images/1581057840_12039452_525963140912391_6353341236808813360_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1581057840_12039452_525963140912391_6353341236808813360_n.png
--------------------------------------------------------------------------------
/product_images/1581339707_7475-ladies-casual-dresses-summer-two-colors-pleated.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1581339707_7475-ladies-casual-dresses-summer-two-colors-pleated.jpg
--------------------------------------------------------------------------------
/product_images/1581568787_photo-1505664194779-8beaceb93744.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1581568787_photo-1505664194779-8beaceb93744.jpg
--------------------------------------------------------------------------------
/product_images/1581855550_a.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1581855550_a.jpg
--------------------------------------------------------------------------------
/product_images/1582035161_gesture-recognition-11-638.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1582035161_gesture-recognition-11-638.jpg
--------------------------------------------------------------------------------
/product_images/1582035362_Screenshot (354).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1582035362_Screenshot (354).png
--------------------------------------------------------------------------------
/product_images/1582036115_Screenshot (353).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1582036115_Screenshot (353).png
--------------------------------------------------------------------------------
/product_images/1582557564_1.0x0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1582557564_1.0x0.jpg
--------------------------------------------------------------------------------
/product_images/1608863816_1581057840_12039452_525963140912391_6353341236808813360_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/1608863816_1581057840_12039452_525963140912391_6353341236808813360_n.png
--------------------------------------------------------------------------------
/product_images/2012-Winter-Sweater-for-Men-for-better-outlook.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/2012-Winter-Sweater-for-Men-for-better-outlook.jpg
--------------------------------------------------------------------------------
/product_images/41OJZebRUoL._SL246_SX190_CR0,0,190,246_.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/41OJZebRUoL._SL246_SX190_CR0,0,190,246_.jpg
--------------------------------------------------------------------------------
/product_images/530201353846AM_635_sony_xperia_z.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/530201353846AM_635_sony_xperia_z.png
--------------------------------------------------------------------------------
/product_images/7475-ladies-casual-dresses-summer-two-colors-pleated.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/7475-ladies-casual-dresses-summer-two-colors-pleated.jpg
--------------------------------------------------------------------------------
/product_images/CT_WM_BTS-BTC-AppliancesHome_20150723.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/CT_WM_BTS-BTC-AppliancesHome_20150723.jpg
--------------------------------------------------------------------------------
/product_images/GirlsClothing_Widgets.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/GirlsClothing_Widgets.jpg
--------------------------------------------------------------------------------
/product_images/a2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/a2.jpg
--------------------------------------------------------------------------------
/product_images/amer-furniture.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/amer-furniture.jpg
--------------------------------------------------------------------------------
/product_images/asian-furniture-250x250.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/asian-furniture-250x250.jpg
--------------------------------------------------------------------------------
/product_images/bedroom-furniture-250x250.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/bedroom-furniture-250x250.jpg
--------------------------------------------------------------------------------
/product_images/cache-furnitures-ltd-cot-j6619q-wos-60x75.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/cache-furnitures-ltd-cot-j6619q-wos-60x75.jpg
--------------------------------------------------------------------------------
/product_images/camera.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/camera.jpg
--------------------------------------------------------------------------------
/product_images/da4371ffa192a115f922b1c0dff88193.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/da4371ffa192a115f922b1c0dff88193.png
--------------------------------------------------------------------------------
/product_images/download.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/download.jpg
--------------------------------------------------------------------------------
/product_images/emergency light.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/emergency light.JPG
--------------------------------------------------------------------------------
/product_images/furniture-book-shelf-250x250.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/furniture-book-shelf-250x250.jpg
--------------------------------------------------------------------------------
/product_images/gents-formal-250x250.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/gents-formal-250x250.jpg
--------------------------------------------------------------------------------
/product_images/gents-party-wear-suits-500x500.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/gents-party-wear-suits-500x500.jpg
--------------------------------------------------------------------------------
/product_images/girl-walking.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/girl-walking.jpg
--------------------------------------------------------------------------------
/product_images/http___pluspng.com_img-png_iphone-6s-png-iphone-6s-gold-64gb-1000.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/http___pluspng.com_img-png_iphone-6s-png-iphone-6s-gold-64gb-1000.png
--------------------------------------------------------------------------------
/product_images/http___pluspng.com_img-png_iphone-hd-png-iphone-apple-png-file-550.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/http___pluspng.com_img-png_iphone-hd-png-iphone-apple-png-file-550.png
--------------------------------------------------------------------------------
/product_images/i3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/i3.jpg
--------------------------------------------------------------------------------
/product_images/image28.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/image28.jpg
--------------------------------------------------------------------------------
/product_images/images (1).jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/images (1).jpg
--------------------------------------------------------------------------------
/product_images/images (2).jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/images (2).jpg
--------------------------------------------------------------------------------
/product_images/images (3).jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/images (3).jpg
--------------------------------------------------------------------------------
/product_images/images (4).jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nikhilkeshava/Online_Inventory_shop/6a2095daf63632098afef20613abc6f94a248d8e/product_images/images (4).jpg
--------------------------------------------------------------------------------
/register.php:
--------------------------------------------------------------------------------
1 |
23 |