-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1001 lines (986 loc) · 51.6 KB
/
index.html
File metadata and controls
1001 lines (986 loc) · 51.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" media="screen" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" media="screen" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@2/dist/email.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3Z23XW40ZW"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3Z23XW40ZW');
</script>
<title>Reseller Platform</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light fixed-top">
<div class="container-fluid">
<a href="">
<img src="assets/images/logo.jpg" width="40" height="30" alt="">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#nav_collapse"
aria-controls="nav_collapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="nav_collapse">
<ul class="navbar-nav font-open-sans mr-auto">
<li class="nav-item">
<a class="nav-link tab active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link tab end_tour_btn" href="#features">Features</a>
</li>
<!-- <li class="nav-item">
<a class="nav-link tab" href="#pricing_panel">Pricing</a>
</li> -->
<li class="nav-item">
<a class="nav-link tab" href="#faq">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link tab" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row" id="panel1">
<div class="col-xs-12 col-md-12 col-lg-6 ">
<div class="row text-center m-t-80">
<p class="font-roboto left bold-big m-b-0">IT'S MORE <span class="font-roboto regular-small">than just an app</span>
</p>
</div>
<div class="row right-align">
<p class="font-roboto bold-big m-b-0"><span class="font-roboto regular-small right-align">It's Smarter</span> THAN DIGITAL
</p>
</div>
<div class="row text-center ">
<p class="font-roboto left bold-big m-b-0">IT'S YOUR <span class="font-roboto regular-small">daily companion.</span>
</p>
</div>
<div class="row right-align">
<p class="font-roboto bold-big m-b-0"><span class="font-roboto regular-small right-align">It's the way you do </span> BUSINESS
</p>
</div>
<div class="row-sm m-t-40">
<div class="row download-section ml-auto mr-5">
<a class="d-inline-flex p-l-40" href="https://play.google.com/store/apps/details?id=com.resellerplatform" target="_blank">
<img src="assets\images\playstorebutton.svg" alt="download app" width="130px" height="70px">
</a>
</div>
<div class="row download-section ml-auto mr-0">
<div class="d-inline-flex p-l-40">
<img src="assets\images\appstorebutton.svg" alt="download app" width="130px" height="70px">
</div>
</div>
</div>
</div>
<div class="img-responsive col-xs-12 col-md-12 col-lg-6 m-t-80 p-0">
<img src="assets/images/home.JPG" width="100%" height="100%" alt="">
</div>
<a class="fixed-bottom" id="bottom-arrow">
<i class="fa fa-angle-down bounce fa-2x" aria-hidden="true"></i>
</a>
</div>
<!-- ========how it works============= -->
<div class ="row" id="how_it_works">
<div class="col-xs-12 text-center m-t-80">
<span class="heading font-open-sans">How It Works</span><br>
<span class="sub-heading font-roboto">Dont scrach your head ! Reseller Platform follows B to B to C model. Here’s an overview</span>
</div>
</div>
<div class="row m-t-40">
<div class="col-xs-4 col-lg-4 text-center m-t-40 feature-subrow">
<img src="assets/images/howitworks_1.JPG" width="260" height="250" alt=""><br>
<span >Register as Reseller or Distributor<span class="readmore d-lg-none"> ...read more</span></span>
<div class="hide">
<span>Any user can register either as a reseller or as a distributor, we support only one role per user</span>
</div>
</div>
<div class="col-xs-4 col-lg-4 text-center m-t-40 feature-subrow">
<img src="assets/images/howitworks_2.JPG" width="260" height="250" alt=""><br>
<span>Connect with your resellers or distributors by inviting them through whatsapp<span class="readmore d-lg-none"> ...read more</span></span>
<div class="hide">
<span>Distributors and resellers can send the association request to eachother and after successful linking the resellers can get the online customer orders from associated distributor</span>
</div>
</div>
<div class="col-xs-4 col-lg-4 text-center m-t-40 feature-subrow">
<img src="assets/images/howitworks_3.JPG" width="260" height="250" alt=""><br>
<span>Distributors will list products and add to reseller's inventory<span class="readmore d-lg-none"> ...read more</span></span>
<div class="hide">
<span>Distributors can add products to their online store through the app. The resellers can order the products from distributors using the app and these products will be added to reseller's inventory automatically upon successful delivery</span>
</div>
</div>
</div>
<!-- ===========features page============= -->
<div id="features">
<div class="row m-t-80">
<div class="col-xs-12 text-center">
<p class="heading font-open-sans m-b-0">Powerful Features</p>
<p class="sub-heading font-roboto">The Reseller Platform comes with tons of features to increase your productivity</p>
</div>
</div>
<div class="row justify-content-center feature-row">
<div class="col-lg-3 text-end feature-col">
<div class="row feature-subrow" id="get_connected">
<div class="row-1">
<image class="my-icon" width="35" height="35" src="assets/images/getconnected.svg" alt="">
</div>
<div class="row-1"><p class="my-text font-open-sans">Get connected</p></div>
<div class="row-1">
<p class="my-subtext font-roboto">Connect with Distributors and Resellers
and grow your business<span class="readmore d-lg-none">...</span></p>
<div class="hide">
<p class="my-subtext font-roboto text-end">
Distributors can invite resellers via WhatsApp.
Resellers can also invite the distributors.
Resellers can directly order stock from the
distributors without any invite. Resellers will
receive online customer orders once they are
connected with at least one distributor.
</p>
</div>
</div>
</div>
<div class="row feature-subrow" id="inventory_management">
<div class="row-1">
<image class="my-icon" width="35" height="27.97" src="assets/images/box.svg" alt="">
</div>
<div class="row-1"><p class="my-text font-open-sans">Inventory Management</p></div>
<div class="row-1"><p class="my-subtext font-roboto">Add your products, sort them by categories,
update stock and manage your inventory<span class="readmore d-lg-none">...</span></p>
<div class="hide">
<p class="my-subtext font-roboto text-end">
Distributors can list their products on the app
and resellers from all over India will be able to
see and buy those listed products. Resellers and
distributors can see their own stock, update the stock,
categorize the stock, and get notifications regarding
low stock. All the users can see their personal best
seller products, margins on the products and update
all the information of the products.
</p>
</div>
</div>
</div>
<div class="row feature-subrow" id="transactions">
<div class="row-1">
<image class="my-icon" width="21.94" height="35" src="assets/images/rupee.svg" alt="">
</div>
<div class="row-1"><p class="my-text font-open-sans">Transactions</p></div>
<div class="row-1"><p class="my-subtext font-roboto">Keep record of your payments like never before with our inbuilt "Khaata Book"<span class="readmore d-lg-none">...</span></p>
<div class="hide">
<p class="my-subtext font-roboto text-end">
All the transactions between the resellers and
distributors are managed in detail wtih a clear
indication of how much one owes to the other.
These payments will will be settled after the
person confirms that the payment was received.
</p>
</div>
</div>
</div>
</div>
<div class="col-lg-2 text-center feature-col">
<img src="assets/images/Features.png" class="my-img" width="170" height="360" alt="">
<div class="row justify-content-center m-t-40">
<button class="button" id="feature_tour_btn">
<p class="btn-text font-open-sans">Feature Tour</p>
</button>
</div>
</div>
<div class="col-lg-3 text-start feature-col">
<div class="row feature-subrow" id="store">
<div class="row-3">
<image class="my-icon" width="35" height="25.97" src="assets/images/ecommerce.svg" alt="">
</div>
<div class="row"><p class="my-text font-open-sans">Distributor's E-commerce Website</p></div>
<div class="row"><p class="my-subtext font-roboto">Sell your products directly to costumers
with your own online ecommerce website<span class="readmore d-lg-none">...</span></p>
<div class="hide">
<p class="my-subtext font-roboto text-start">
All the products listed by distributor will be visible
to the customers all over the India for orering online.
Those customer orders will be first assigned to the
resellers nearest to the customers address who have
products available, this will help resellers to sell
inventory faster than ever. If no resellers have the
products the order will be assigned to the distributor
who owns the online store.
</p>
</div>
</div>
</div>
<div class="row feature-subrow" id="dashboard">
<div class="row-3">
<image class="my-icon" width="35" height="27.97" src="assets/images/statistics.svg" alt="">
</div>
<div class="row"><p class="my-text font-open-sans">Sales Analytics And Daily Counter</p></div>
<div class="row"><p class="my-subtext font-roboto">View your sales in easy to read graphs and get crucial insight<span class="readmore d-lg-none">...</span></p>
<div class="hide">
<p class="my-subtext font-roboto text-start">
All the users can see the performance of their online
and offline store with detailed insights of remaining
inventory, profit till now and cost till now so the users
will not have to waste their time calculating. The graphs
will show the sales in the current year in monthly fashion.
</p>
</div>
</div>
</div>
<div class="row feature-subrow" id="orders">
<div class="row-3">
<image class="my-icon" width="35" height="35" src="assets/images/order.svg" alt="">
</div>
<div class="row"><p class="my-text font-open-sans">Order Management</p></div>
<div class="row"><p class="my-subtext font-roboto">Complete and fulfill your orders with our effective order management feature<span class="readmore d-lg-none">...</span></p>
<div class="hide">
<p class="my-subtext font-roboto text-start">
All users can view the orders assigned to them all the detailed
information related to order like where to deliver and what
products are to deliver will be visible, now all the user has to
do is keep the products ready for our delivery person to pickup
and update the order status.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ==========feature tour=========== -->
<div id="feature_tour">
<div class="row text-center">
<div class="col-xs-12 m-t-80">
<p class="heading font-open-sans">Pick your role</p>
<p class="sub-heading font-roboto">Choose your role to learn more</p>
</div>
</div>
<div class="row feature-row">
<div class="col-xs-6 col-lg-3 box my-col">
<div class="mycard row justify-content-center" id="distributor_click">
<img class="im" src="assets/images/distributor.JPG" alt="distributor">
<p class="title text-center">Distributor</p>
</div>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-xs-6 col-lg-3 box my-col">
<div class="mycard row justify-content-center" id="reseller_click">
<img class="im" src="assets/images/reseller.JPG" alt="reseller">
<p class="title text-center">Reseller</p>
</div>
</div>
</div>
</div>
<!-- =============distributor feature page================= -->
<div id="distributor_features" class="m-t-80">
<div class="row text-center">
<div class="col-xs-12 m-t-80">
<p class="heading font-open-sans">Distributor Features</p>
<p class="sub-heading font-roboto">Tap on the buttons in bottom Nav to explore more</p>
</div>
</div>
<div class="div1">
<div class="row my-row1 justify-content-center mt-3">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Distributor Home</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
Distributor home is a shortcut to all the frequently needed features,
especially to view the transactions that happened with the resellers,
to upload the inventory either in bulk or a single product.<br><br>
It also will show the products which are in the distributor's inventory.
It will also provide access to quick notifications.
</p>
</div>
</div>
</div>
<div class="div2">
<div class="row justify-content-center">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Inventory</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
Here the distributor can manage the inventory.
The distributor can add a product, delete a product,
and even hide the product when the stock is ended.<br><br>
The distributor can edit the product in any way,
change the product details, images, and even prices.
</p>
</div>
</div>
</div>
<div class="div3">
<div class="row justify-content-center">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Distributor</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
Distributors will be able to add and manage the resellers
associated with his/her business. Simply by adding their
contact in the phone, a distributor can invite the reseller
to join the business. <br><br>
Distributors will be able to receive
orders from the resellers even without the association.
But the resellers will receive the customer orders only
after successful association.
</p>
</div>
</div>
</div>
<div class="div4">
<div class="row justify-content-center">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Orders</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
All the customer orders that will come on the distributor's
website will be visible on this screen. The distributor
can view, and manage the customer order assigned to him/her.<br><br>
If the distributor selects the single order consent he/she
will receive the customer orders once the orders are
rejected by all the nearest resellers.
</p>
</div>
</div>
</div>
<div class="div5">
<div class="row justify-content-center">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Settings</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
Here the distributor will be able to edit the profile
and manage his/her account just by clicking on edit
profile. The stock order button will take the
distributors to the bulk orders placed by resellers,
it is the same as the order management screen.<br><br>
The distributor can also view his account's summary
which is a summary of his sales and profits.
This will help the distributor to know the performance
of his/her business.<br><br>
The distributor can also view his
inventory from here and the transactions that are done
with the resellers.
</p>
</div>
</div>
</div>
<div class="row mt-3 justify-content-center mb-40">
<div class="rect my-row2">
<div class="col-2 my-col btn-1 ">
<input class="nav-img active tab" type="image" src="assets/images/sn_home.png" width="24" height="24" alt="">
</div>
<div class="col-2 my-col btn-2 ">
<input class="nav-img tab" type="image" src="assets/images/sn_d_ordermanage.png" width="18.5" height="24" alt="">
</div>
<div class="col-2 my-col btn-3">
<input class="nav-img tab" type="image" src="assets/images/sn_d_resellers.png" width="28.5" height="24" alt="">
</div>
<div class="col-2 my-col btn-4">
<input class="nav-img tab" type="image" src="assets/images/sn_inventory.png" width="24" height="22" alt="">
</div>
<div class="col-2 my-col btn-5">
<input class="nav-img tab" type="image" src="assets/images/sn_dashboard.png" width="24" height="24" alt="">
</div>
</div>
<div class="px-5 end_tour_btn"><p class="d-sm-none d-lg-block font-roboto text-end"><a href="#features">End Tour...</a></p></div>
</div>
</div>
<!-- =================reseller feature page===================== -->
<div id="reseller_features" class="m-t-80">
<div class="row text-center">
<div class="col-xs-12 m-t-80">
<p class="heading font-open-sans">Reseller Features</p>
<p class="sub-heading font-roboto">Tap on the buttons in bottom Nav to explore more</p>
</div>
</div>
<div class="div1">
<div class="row my-row1 justify-content-center mt-3">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Reseller Home</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
Reseller home is a shortcut to all the
frequently needed features, especially
to view the transactions that happened
with the distributors.<br><br>
A shortcut for the point of sale feature
is also there for easy access.
It also will show the products which
are posted by all the distributors.
Resellers can buy new stock from all the
distributors here.<br><br>
It will also provide access to quick notifications.
The Resellers can also access their cart to
quickly place orders to distributors.
</p>
</div>
</div>
</div>
<div class="div2">
<div class="row justify-content-center">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Point Of Sale</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
POS is "Point of Sale" where a reseller can
sell the product to a customer who walked
into the shop.<br><br>
This simple process is built to help resellers
manage their offline orders and also help
them to create paperless receipts.<br><br>
A reseller can simply type the product name,
set its quantity, add the customer's email
or phone number and place the order.
</p>
</div>
</div>
</div>
<div class="div3">
<div class="row justify-content-center">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Dashboard</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
Resellers can see their store's progress
on this page. A detailed summary of their daily
sales will be shown in graph and table format.<br><br>
A detailed report will show the sale done from
online orders, POS orders, and the remaining
stock in the inventory.<br><br>
The reseller will also see the number of orders fulfilled and pending
to help them clear the pending orders and grow their business.
</p>
</div>
</div>
</div>
<div class="div4">
<div class="row justify-content-center">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Orders</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
All the customer orders that will come from
the distributor's website will be visible on
this screen. The reseller can view, and manage
the customer order assigned to him/her.<br><br>
The orders will be assigned to the reseller
based on their distance from the delivery
address and availability of products, and
rating of the reseller.<br><br>
Resellers close to delivery location, with the product quantity
available as required by the customer and a good
rating, will get order notification. The reseller
can accept and reject the order.
</p>
</div>
</div>
</div>
<div class="div5">
<div class="row justify-content-center">
<div class="col-lg-3 my-col">
<p class="title1 text-center">Settings</p>
</div>
<div class="col-lg-2 text-center my-col">
<img src="assets/images/Features.png" class="my-img" width="190" height="390" alt="">
</div>
<div class="col-lg-3 text-start my-col">
<p class="my-subtext font-roboto text-start">
Here the reseller will be able to edit the
profile and manage his/her account just by
clicking on edit profile.<br><br>
The stock order button will take the resellers to the bulk
orders placed by them. The reseller can also
view his/her account's summary which is a
summary of the sales and profits.<br><br>
This will help the reseller to know the
performance of his/her business.
The reseller can also view his inventory
from here and the transactions that are
done with the distributors.
</p>
</div>
</div>
</div>
<div class="row mt-5 justify-content-center mb-40">
<div class="row rect my-row2">
<div class="col-2 my-col btn-1">
<input class="nav-img active tab" type="image" src="assets/images/sn_home.png" width="24" height="24" alt="">
</div>
<div class="col-2 my-col">
<input class="nav-img btn-2 tab" type="image" src="assets/images/sn_d_ordermanage.png" width="18.5" height="24" alt="">
</div>
<div class="col-2 my-col">
<input class="nav-img btn-3 tab" type="image" src="assets/images/sn_d_resellers.png" width="28.5" height="24" alt="">
</div>
<div class="col-2 my-col">
<input class="nav-img btn-4 tab" type="image" src="assets/images/sn_inventory.png" width="24" height="22" alt="">
</div>
<div class="col-2 my-col">
<input class="nav-img btn-5 tab" type="image" src="assets/images/sn_dashboard.png" width="24" height="24" alt="">
</div>
</div>
<div class="px-5 end_tour_btn"><p class="d-sm-none d-lg-block font-roboto text-end"><a href="#features">End Tour...</a></p></div>
</div>
</div>
<!-- ============bulk import============== -->
<div class="row m-t-150 m-b-80" id ="bulk_import">
<div class="col-xs-12 col-md-6 col-lg-6 text-center m-t-80 mb-40">
<div class="heading font-open-sans">Upload All Products At Once!</div>
<span class="sub-heading font-roboto">Import hundreds of products in in your online store by uploding just one spreadsheet.</span>
</div>
<div class="col-xs-12 col-md-6 col-lg-6 p-0">
<img src="assets/images/bulkimport.JPG" width="100%" height="100%" alt="">
</div>
</div>
<!-- ===============online orders============== -->
<div class="row m-t-150 m-b-80" id="online_orders">
<div class="col-xs-12 col-md-6 col-lg-6 p-0">
<img src="assets/images/Onlinestore.JPG" width="100%" height="100%" alt="">
</div>
<div class="col-xs-12 col-md-6 col-lg-6 text-center m-t-80 mb-40">
<div class="heading font-open-sans">Smart orders</div>
<span class="sub-heading font-roboto">
Use our innovative location based smart order. The customer order
placed on a distributor's online store will be assigned to the reseller
who is closer to the customer's address.<br>
</span>
</div>
</div>
<!-- =================pricing================== -->
<!-- <div id="pricing_panel">
<div class="row m-t-150">
<div class="col-xs-12 text-center">
<p class="heading font-open-sans m-b-0">Simple pricing for everyone</p>
<p class="sub-heading font-roboto">Transparent pricing build for businesses of all sizes</p>
</div>
</div>
<div class="row m-t-40">
<div class="col-xs-12 col-lg-5 pricing p-l-40">
<p class="my-text font-roboto">Struggling to get going with the process ?<br>
We got your back, our <a href="#"> Pro+ </a>plan is just for you !</p>
<div class="card-extra card m-t-20">
<div id="card-header_pro-plus" class="card-header card-body d-flex justify-content-end">
<div class="w-100">
<h4 class="card-title">Pro+</h4>
<p class="card-subtitle">For Businesses just starting out online</pm>
</div>
<div>
<i class="fa fa-rocket fa-2x pl-1 pr-1"></i>
</div>
</div>
<div class="card-body">
<h5 class="card-text">₹ 7499 (one time)
<div class="tooltip"><i class="fa fa-info-circle"></i>
<span class="tooltiptext">Tooltip text</span>
</div>
</h5>
<ul class="font-roboto">
<li>
Pro subscription
<div class="tooltip"><i class="fa fa-info-circle"></i>
<span class="tooltiptext">Tooltip text</span>
</div>
</li>
<li>
Personal assistance to your initial setup
<div class="tooltip"><i class="fa fa-info-circle"></i>
<span class="tooltiptext">Tooltip text</span>
</div>
</li>
<li>
Get you first product delivered on Reseller Platform
<br>as well as from your website
<div class="tooltip"><i class="fa fa-info-circle"></i>
<span class="tooltiptext">Tooltip text</span>
</div>
</li>
<li>
Still aren’t sure ? <a href="#">Contact Sales </a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-xs-12 col">
<div class="card-extra card m-t-20">
<div id="card-header_free" class="card-header card-body d-flex justify-content-end">
<div class="w-100">
<h4 class="card-title">Free</h4>
<p class="card-subtitle">Forever Free</p>
</div>
<div>
<i class="fa fa-paper-plane fa-2x pl-1 pr-1"></i>
</div>
</div>
<div class="card-body">
<h3 class="card-text m-auto text-center">₹ 0 </h3>
<p class="my-subtext font-roboto text-center">Per month</p>
<ul class="pricing font-roboto">
<li>
Your own Website
</li>
<li>
Get RP orders
</li>
<li>
Reseller invites
</li>
<li>
Products uploads
</li>
<li>
Share products on social media
</li>
</ul>
<button class="button w-100 m-t-20" href="#"><p class="btn-text font-open-sans">Get Started</p></button>
</div>
</div>
</div>
<div class="col-xs-12 col ">
<div class="card-extra card m-t-20">
<div id="card-header_lite" class="card-header card-body d-flex justify-content-end">
<div class="w-100">
<h4 class="card-title">Lite</h4>
<p class="card-subtitle">For small Businesses</p>
</div>
<div>
<i class="fa fa fa-plane fa-2x pl-1 pr-1"></i>
</div>
</div>
<div class="card-body">
<h3 class="card-text m-auto text-center">₹ 2499 </h3>
<p class="my-subtext font-roboto text-center">Per month</p>
<ul class="pricing font-roboto">
<li>
SEO of your Website
</li>
<li>
Delivery support
</li>
<li>
Production support
</li>
<li>
Effective order sync & migrations
</li>
<li>
Everything from <a href="">Lite</a>
</li>
</ul>
<button class="button w-100 m-t-20" href="#"><p class="btn-text font-open-sans">Get Started</p></button>
</div>
</div>
</div>
<div class="col-xs-12 col">
<div class="card-extra card m-t-20">
<div id="card-header_pro" class="card-header card-body d-flex justify-content-end">
<div class="w-100">
<h4 class="card-title">Pro</h4>
<p class="card-subtitle">For large Enterprises</p>
</div>
<div>
<i class="fa fa-rocket fa-2x pl-1 pr-1"></i>
</div>
</div>
<div class="card-body">
<h3 class="card-text m-auto text-center">₹ 3499 </h3>
<p class="my-subtext font-roboto text-center ">Per month</p>
<ul class="pricing font-roboto">
<li>
No adds on Website
</li>
<li>
Custom Invoice
</li>
<li>
List/Unlist products
</li>
<li>
7 days Settlement & Reconcilation
</li>
<li>
Everything from <a href="">Lite</a>
</li>
</ul>
<button class="button w-100 m-t-20" href="#"><p class="btn-text font-open-sans">Get Started</p></button>
</div>
</div>
</div>
</div>
</div>-->
<!-- ===================faq======================== -->
<div id="faq" class="m-b-80">
<div class="row text-center mt-5 my-row1">
<p class="heading font-open-sans m-b-0">Frequently Asked Questions</p>
<p class="sub-heading font-roboto">Got questions ? We are here to explain everything you might want to know.</p>
</div>
<!-- <div class="row my-row1">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="collapse navbar-collapse justify-content-center">
Commenting it temporarily due to lack of FAQs -->
<!-- <ul class="navbar-nav font-open-sans mr-auto">
<li class="nav-item">
<a class="nav-link tab active" href="#general_questions">General</a>
</li>
<li class="nav-item">
<a class="nav-link tab" href="#pricing_questions">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link tab" href="#payment_questions">Payments</a>
</li>
<li class="nav-item">
<a class="nav-link tab" href="#order_questions">Orders</a>
</li>
<li class="nav-item">
<a class="nav-link tab" href="#shipping_questions">Shipping</a>
</li>
<li class="nav-item">
<a class="nav-link tab" href="#return_questions">Returns</a>
</li>
<li class="nav-item">
<a class="nav-link tab" href="#refund_questions">Refunds</a>
</li>
</ul>
</div>
</nav>
</div> -->
<div class="row">
<div class="col-xs-12 col-lg-12">
<div id="general_questions">
<div class="accordion">
<div class="card mx-auto col-lg-7 border-0 m-t-40">
<div class="card-header">
<a class="collapsed card-link font-roboto" data-toggle="collapse" href="#collapseOne">
Q. What is The Reseller Platform?
<i class="fa fa-minus"></i>
</a>
</div>
<div id="collapseOne" class="collapse show" data-parent=".accordion">
<div class="card-body font-roboto">
The reseller platform is a comprehensive solution
for all the needs of a distribution chain. It is aimed to increase
the sale of distributors and Resellers and simultaneously aims to
reduce the delivery time and cost of products to the customers. The
resellers have the power to order the product directly from the
distributors associated with them from any part of the country. The
distributors can assign orders placed by customers to the resellers
who are near to the customer's delivery address.
</div>
</div>
</div>
<div class="card mx-auto col-lg-7 border-0 m-t-20">
<div class="card-header">
<a class="collapsed card-link font-roboto" data-toggle="collapse" href="#collapseTwo">
Q. Who can use The Reseller Platform?
<i class="fa fa-plus"></i>
</a>
</div>
<div id="collapseTwo" class="collapse" data-parent=".accordion">
<div class="card-body font-roboto">
Whether you are a Wholeseller, Distributor or Manufacturer looking to expand your reach
to more Retailers. Or even if you are a Retailer wanting to connect with more wholesellers
to buy products for your shop, Reseller Platform is the one thing you need.
</div>
</div>
</div>
<div class="card mx-auto col-lg-7 border-0 m-t-20">
<div class="card-header">
<a class="collapsed card-link font-roboto" data-toggle="collapse" href="#collapseThree">
Q. Does The Reseller Platform cost anything?
<i class="fa fa-plus"></i>
</a>
</div>
<div id="collapseThree" class="collapse" data-parent=".accordion">
<div class="card-body font-roboto">
No, it is completely free for the promotional period of 1 year.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-lg-12 text-start m-t-40 " id="faq-footer">
<p class="font-roboto">Didn’t found the answer you’re looking for? Ask us <a href="#contact">here</a>
</p>
</div>
</div>
</div>
<!-- ========================contact============================= -->
<div id="contact" class="bg">
<div class="row text-center">
<div class="col-xs-12 mt-5">
<p class="heading font-open-sans m-b-0">Contact Us</p>
<p class="sub-heading font-roboto">Feel free to contact us, we will get back to you as soon as we can.</p>
</div>
</div>
<div class="row justify-content-center mt-3">
<div class="col-lg-3 m-4" id='contact_form_fields'>
<form id="contact-form" class="contact-form row">
<input type="hidden" name="contact_number">
<div class="form-field col-lg-12">
<input id="name" name="from_name" class="input-text js-input font-roboto" type="text" placeholder="Name" required>
</div>
<div class="form-field col-lg-12">
<input id="email" name="from_email" class="input-text js-input font-roboto" type="email" placeholder="E-mail" required>
</div>
<div class="form-field col-lg-12">
<textarea id="message" name="message" class="input-text js-input font-roboto" type="text" placeholder="Tell us all about it" required></textarea>
</div>
<div class="form-field col-lg-12 text-end mt-2">
<input type="submit" class="button" value="Send">
<!-- <button type="submit" class="button">
<p class="btn-text font-open-sans">Send</p>
</button> -->
<!-- <button class="button" id="feature_tour_btn">
<p class="btn-text font-open-sans">Feature Tour</p>
</button> -->
</div>
</form>
</div>
<div class="col-lg-3 m-4" id='success_message'>
<div id='success_card' class="animated fadeIn">
<div id='upper-side'>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="checkmark" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" xml:space="preserve">
<path d="M131.583,92.152l-0.026-0.041c-0.713-1.118-2.197-1.447-3.316-0.734l-31.782,20.257l-4.74-12.65
c-0.483-1.29-1.882-1.958-3.124-1.493l-0.045,0.017c-1.242,0.465-1.857,1.888-1.374,3.178l5.763,15.382
c0.131,0.351,0.334,0.65,0.579,0.898c0.028,0.029,0.06,0.052,0.089,0.08c0.08,0.073,0.159,0.147,0.246,0.209
c0.071,0.051,0.147,0.091,0.222,0.133c0.058,0.033,0.115,0.069,0.175,0.097c0.081,0.037,0.165,0.063,0.249,0.091
c0.065,0.022,0.128,0.047,0.195,0.063c0.079,0.019,0.159,0.026,0.239,0.037c0.074,0.01,0.147,0.024,0.221,0.027
c0.097,0.004,0.194-0.006,0.292-0.014c0.055-0.005,0.109-0.003,0.163-0.012c0.323-0.048,0.641-0.16,0.933-0.346l34.305-21.865
C131.967,94.755,132.296,93.271,131.583,92.152z" />
<circle fill="none" stroke="#ffffff" stroke-width="5" stroke-miterlimit="10" cx="109.486" cy="104.353" r="32.53" />
</svg>
<h3 id='status'>
Success
</h3>
</div>
<div id='lower-side'>
<p id='message'>
E-mail sent successfully.
</p>
</div>
</div>
</div>
<div class="col-lg-3 m-4" id='failure_message'>
<div id='success_card' class="animated fadeIn">
<div id='upper-side-failure'>
<img src="assets/images/failure_icon.png">
<h3 id='status'>
Failure
</h3>
</div>
<div id='lower-side'>
<p id='message'>
Failed to send e-mail. Contact Administrator.
</p>
</div>
</div>
</div>
<div class="col-lg-3 d-flex justify-content-center m-4">
<div class="col-lg-6">
<p class="my-subtext font-roboto">Support</p>
<a class="sub-heading font-roboto" href="mailto:marstechweb@gmail.com">
marstechweb@gmail.com
</a>
<a class="sub-heading font-roboto" href="tel:9049696189">
+91 9049696189
</a>
<p class="my-subtext font-roboto">Contact hours</p>
<p class="sub-heading font-roboto font-roboto">
Monday - Friday<br>
9am - 5pm<br>
Weekend closed<br>
</p>
</div>
</div>
</div>
<!-- ===================footer======================= -->
<footer>
<div class="container-fluid">
<div class="row">
<div class="col-xs-6 col-lg-12" id="hash">
<span class="footer-text text-start d-flex" >
<p class="mb-0 ">Copyright © 2020-21</p>
<p class="mb-0 foot"> resellerplatform.io | All rights reserved | <a href="assets/privacy-policy/Privacy Policy.pdf" target="_blank" class="footer-text ">Privacy Policy</a></p>
</span>
<span class="footer-text right-align text-end">
<span class="foot">Website developed and mantained by </span>
<a href="https://www.marstech.co.in/" target="_blank">
<img class="img-responsive" src="assets\images\marstechlogo.svg" height="44vh" width="65vh" />
</a>
</span>
</div>
</div>
</div>
</footer>
</div>
<!-- =======================end of container======================================== -->
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@2/dist/email.min.js"></script>
<script src= "js/main.js"></script>
<script type="text/javascript">
(function() {
emailjs.init('user_BwVr7yJimJlog9tQ5bi5S');
})();
</script>
<script src="js/mail.js"></script>
</body>