www.testing.proindia.co Open in urlscan Pro
162.246.21.210  Public Scan

URL: https://www.testing.proindia.co/
Submission: On March 21 via api from US — Scanned from US

Form analysis 2 forms found in the DOM

POST

<form method="post" action="">
  <input type="hidden" name="_token" value="T9QN2gZtd8qWXv8FT1cpQ6x0F4PXpgFnCSYsI7Rk">
  <div class="form-group">
    <label>Name:</label>
    <input type="text" name="name" id="name" class="form-control" placeholder="">
  </div>
  <div class="form-group">
    <label>Email:</label>
    <input type="email" name="email" id="email" class="form-control" placeholder="">
    <button type="submit" name="submit" value="submit" onclick="return submitsubs2()" class="btn btn-submit">Subscribe</button>
  </div>
</form>

POST check-login.php

<form action="check-login.php" method="post">
  <div class="row">
    <div class="col-md-7">
      <div class="line">
        <div id="loginotpdiv" class="form-group col-sm-12">
          <div class="col-sm-12" style="padding:0px">
            <label for="email" class="control-label">Mobile Number</label>
            <input type="text" name="user_id" id="user_id" value="+91" minlength="13" maxlength="13" placeholder="9xxxxxxxxx" required="" class="form-control">
            <div id="recaptcha-container">
              <div>
                <div style="width: 304px; height: 78px;">
                  <div><iframe title="reCAPTCHA" width="304" height="78" role="presentation" name="a-w2lspdfafiwc" frameborder="0" scrolling="no"
                      sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation"
                      src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6LcMZR0UAAAAALgPMcgHwga7gY5p8QMg1Hj-bmUv&amp;co=aHR0cHM6Ly93d3cudGVzdGluZy5wcm9pbmRpYS5jbzo0NDM.&amp;hl=en&amp;type=image&amp;v=YurWEBlMIwR4EqFPncmQTkxQ&amp;theme=light&amp;size=normal&amp;cb=czgdpnbywdkj"></iframe>
                  </div><textarea id="g-recaptcha-response" name="g-recaptcha-response" class="g-recaptcha-response"
                    style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
                </div><iframe style="display: none;"></iframe>
              </div>
            </div>
          </div>
        </div>
        <div class="form-group col-sm-12" id="verificationdiv" style="display: none;">
          <label for="verificationCode"><strong>Verification Code</strong></label><br>
          <div class="col-sm-12" style="padding: 0px">
            <input type="text" id="verificationCode" class="form-control" placeholder="Enter verification code" name="verificationCode" required="">
          </div>
        </div>
        <script src="https://www.gstatic.com/firebasejs/10.3.0/firebase-app.js"></script>
        <script src="https://www.gstatic.com/firebasejs/10.3.0/firebase-analytics.js"></script>
        <script src="https://firebase.google.com/docs/web/setup#available-libraries"></script>
        <script src="https://www.gstatic.com/firebasejs/8.3.1/firebase.js"></script>
        <script>
          // Your web app's Firebase configuration
          const firebaseConfig = {
            apiKey: "AIzaSyDGhQtfk8xofVP688JpVnv5yaXgX3SVJKs",
            authDomain: "proindia-2419c.firebaseapp.com",
            projectId: "proindia-2419c",
            storageBucket: "proindia-2419c.appspot.com",
            messagingSenderId: "924500222439",
            appId: "1:924500222439:web:091425f0c636dace37dd42",
            measurementId: "G-04VBZ7QZYD"
          };
          // Initialize Firebase
          firebase.initializeApp(firebaseConfig);
          firebase.analytics();
        </script>
        <script>
          window.onload = function() {
            render();
          };

          function render() {
            window.recaptchaVerifier = new firebase.auth.RecaptchaVerifier('recaptcha-container');
            recaptchaVerifier.render();
            $('#loginBtn').prop('disabled', false);
          }
          var coderesult;

          function submitsubs3() {
            $('#loginBtn').prop('disabled', true);
            var user_id = $('#user_id').val();
            var mobilestart = user_id.substr(0, 3);
            var amobile = user_id.slice(3);
            if (mobilestart == '+91') {
              if (user_id == '' || (/[1-9]{1}[0-9]{9}/.test(amobile)) == false || amobile.length != 10) {
                alert('Please enter valid mobile number');
                $('#loginBtn').prop('disabled', false);
                return false;
              }
              $.ajax({
                type: "POST",
                url: "SendData.php",
                dataType: 'JSON',
                data: {
                  auser_id: user_id
                },
                async: false,
                success: function(response) {
                  if (!response['status']) {
                    $('#loginBtn').prop('disabled', false);
                    alert(response['message']);
                  } else {
                    firebase.auth().signInWithPhoneNumber(user_id, window.recaptchaVerifier).then(function(confirmationResult) {
                      window.confirmationResult = confirmationResult;
                      coderesult = confirmationResult;
                      console.log(coderesult);
                      alert("OTP Send Successfully");
                      $('#loginotpdiv').hide();
                      document.getElementById('verificationdiv').style.display = 'block';
                      $('#loginBtn').hide();
                      $('#verifyBtn').show();
                      $('#loginBtn').prop('disabled', false);
                    }).catch(function(error) {
                      $('#loginBtn').prop('disabled', false);
                      alert(error.message);
                    });
                  }
                }
              });
            } else {
              alert('Please enter valid mobile number start with +91');
              $('#loginBtn').prop('disabled', false);
              return false;
            }
          }

          function submitsubs() {
            $('#verifyBtn').prop('disabled', true);
            var user_id = $('#user_id').val();
            var otp = $('#verificationCode').val();
            var mobilestart = user_id.substr(0, 3);
            var amobile = user_id.slice(3);
            if (mobilestart == '+91') {
              if (user_id == '' || (/[1-9]{1}[0-9]{9}/.test(amobile)) == false || amobile.length != 10) {
                alert('Please enter valid user id');
                $('#verifyBtn').prop('disabled', false);
                return false;
              }
              if (otp == "") {
                alert("Please enter OTP");
                $('#verifyBtn').prop('disabled', false);
                return false;
              }
              if (otp.length != 6) {
                alert("Please enter valid 6 digit OTP!!!");
                $('#verifyBtn').prop('disabled', false);
                return false;
              }
              coderesult.confirm(otp).then(function(result) {
                var user = result.user;
                console.log(user);
                $.ajax({
                  type: "POST",
                  url: "SendData.php",
                  dataType: 'JSON',
                  data: {
                    auser_id: user_id,
                    otp: otp
                  },
                  async: false,
                  success: function(response) {
                    if (!response['status']) {
                      alert(response['message']);
                      $('#verifyBtn').prop('disabled', false);
                    } else {
                      $('#userotp').val(otp);
                      //$(".otp-boxm").hide();
                      $.ajax({
                        type: "POST",
                        url: "check-login.php",
                        data: {
                          user_id: user_id,
                          userotp: otp
                        },
                        beforeSend: function() {
                          $("#otpresults").html('Checking...');
                        },
                        success: function(data) {
                          if (data.status == 0) {
                            $(".print-error-msg").find("ul").html('');
                            $(".print-error-msg").css('display', 'block');
                            $("#otpresults").hide();
                            $(".print-error-msg").find("ul").append('<li>Invalid User ID</li>');
                            return false;
                          }
                          if ($.isEmptyObject(data.error)) {
                            $(".print-error-msg").css("display", "none");
                            $("#otpresults").html('Logged in successfully.');
                            $("#otpresults").hide();
                            location.href = "member/";
                          } else {
                            printErrorMsg(data.error);
                            $("#otpresults").hide();
                          }
                          $('#verifyBtn').prop('disabled', false);
                        },
                        error: function(xhr, status, error) {
                          $('#verifyBtn').prop('disabled', false);
                          var err = eval("(" + xhr.responseText + ")");
                          alert(err.Message);
                          return false;
                        }
                      });
                    }
                  }
                });
              }).catch(function(error) {
                $('#verifyBtn').prop('disabled', false);
                alert(error.message);
              });
            } else {
              $('#verifyBtn').prop('disabled', false);
            }
          }

          function printErrorMsg(msg) {
            $(".print-error-msg").find("ul").html('');
            $(".print-error-msg").css('display', 'block');
            $.each(msg, function(key, value) {
              $(".print-error-msg").find("ul").append('<li>' + value + '</li>');
            });
          }
        </script>
        <button type="button" id="loginBtn" onclick="return submitsubs3()" class="btn btn-submit mt20">LOGIN</button>
        <button type="button" id="verifyBtn" style="display:none" onclick="return submitsubs()" class="btn btn-submit mt20">SUBMIT</button>
        <p id="otpresults" style="color:green;display:block!important;"></p>
        <!--	<div class="login-boxm">
									<div class="_login_title mb20">User Authentication</div>
									<form action="login-check.php">
										<input type="hidden" name="userotp" id="userotp">
										<div class="form-group">
											<input type="text" name="user_id" id="user_id" class="form-control"  placeholder="USER ID/ID NUMBER">
										</div>
										
										<a href="javascript:void(0)">Forgot Password</a>
									<input type="submit" name="LOGIN" value="Login" class="btn btn-submit mt20"/>
											
									</form>
									</div>
									
									<div class="otp-boxm" style="display:none">
									<div class="_login_title mb20 otp-form">OTP Authentication</div>
									<div class="form-group">
										<input type="number" minlength="4" maxlength="4" name="user_otp" id="user_otp" class="form-control"  placeholder="OTP">
									</div>
										
									<button type="button" onclick="return submitsubs()" class="btn btn-submit mt20">SUBMIT</button>
						
									<div class="alert alert-danger print-error-msg" style="display:none">
									<ul></ul>
									</div>	
									</div>
									
								<p id="results" style="color:green;display:block!important;"></p>
								<div class="alert alert-danger print-error-msg" style="display:none">
									<ul></ul>
								</div>	-->
      </div>
    </div>
    <div class="col-md-5">
      <div class="_login_title mb20">Registration </div>
      <a href="signup.php" class="login-registration">Registration </a>
    </div>
  </div>
</form>

Text Content

 * Login

 * 
 * About Us
   * About Pro-india
   * Pro-india
   * Vision Mission
     
   * Message from the Directors
     
   
 * Products
   * Health & Nutrition
   * Ayurvedic
   * Food Beverage
   * Beauty & Bright
   * Mens Care
   * Footware
   * Mobile Accessories
   * Clothing
     
   
   
 * Media Room
     
   * News
   * Image Gallery
   * Pro-india Rewards
   * Video
   * Blogs
     
   
 * Join us
   * Why Pro-india
   * Opportunity
   * Become a distributor
   * Terms & Policy
   * Testimonial
   * Success Story
   
 * Contact us
   * Head & Branch Office
     
   * Support Center
   * Complaints & feedback
   
   
 * Download

prev
next


WHAT'S NEW

MLM industry crosses US $3.25 billion in retail sales, ranks 12th globally

Read More
Read More
Newsletters


HOW TO BECOME A PROINDIA DISTRIBUTOR

Here is a great business opportunity waiting to be explored by you. The joining
process is designed to keep the entire procedure easy, quick and non-complex.
You need to be introduced to the company by an already existing Proindia Trading
India business distributor.

Read More
Proindia Winner Magazine
CSR Initiatives


OUR BRANDS

Previous

Next
 * 1
 * 2
 * 3
 * 4
 * 5
 * 6
 * 7


SUCCESS STORIES

Previous


KOMAL SHARMA ( CHIEF MANAGER)


A winner who challenged all the difficulties in life, Someone has rightly said
that �if I keep walking on the path, then I will become an expert in walking,
either I will get the destination or I will become a good traveler.� Often, when
we start a new journey, new experiment or new business, there are many
complications in our heart. There are many types of questions, but the person
who keeps his faith aside from these, he definitely achieves success.

A luxurious house, a gleaming car parked in front and sitting in all decked up
suit, people can easily guess what status does Komal Sharma hold. But no one can
guess that Komal Sharma used to be a simple lady a few years ago. Then something
happened that the whole picture changed. To know how this picture changed, I
Komal Sharma, will tell you my story. I am from Panipat, Haryana. I have only
studied till 12th standard. After leaving studies, I had to do something for
living, so I started working in a construction company. I often saw people
sitting in luxurious vehicles. While walking in front of the hotels, I used to
see the beautiful life of these people. I could not understand why all these
things are lacking in my life.

 

This is how things changed

 

My life was running on a different pattern and would continue to move but with
time a wave of change came and everything transformed. I have a cousin Mr. Radhe
Rham who is a Business Head in Pro-India Business. One fine day I got a call
from him and after that, he said “in my view there is a business that will
remove your financial crisis forever and dreams will also be fulfilled.” I
believe that when time comes to bring changes in life, destiny makes it happen.

 

In such a situation, I looked upon my brother's phone as an opportunity to
change the time and agreed to see the business presentation of Pro-India with my
brother.

Doubt in mind

After listening to the success stories of successful people, I believed that I
have my identity but there are many people who can’t even afford two times meal
a day. Today they are supporting others. They became an inspiration to millions
of people and set an example. If they can do it then why can't I do it. I will
definitely do it and I will show it by myself.

To be honest, I was very excited after seeing all this. I started feeling that
now I will earn huge amount in a few days. This was even possible because many
people in the Pro-India business have made good money in a very short period of
time. But I could not see the hard work and training behind them. Although my
senior had explained to me about training. I did not take the training,
disregarding the advice of my senior and started calling people to watch the
business presentation as per their choice.

On my call, some people came to see the business presentation of Pro-India but
when they started asking me questions about the business, I could not tell
anything because I did not take training nor used the products myself. So I
failed in business but when my upline heard this, they explained to me and
motivated to take training. After all these incidents, I learnt a lesson and
also the challenge, which I accepted and started improving myself. I got success
for the first time. Now people were listening to me and I was giving answers to
their questions very easily. Gradually my downline started to form.

There was a time in my life when my family was trying their best to get me out
of business. Now, my whole family is completely supporting me in this business.
Some days back I could barely earn Rs. 200 a day and today I am earning in lakhs
every month. I am still the same Komal Sharma and this world is also the same.
Just the view of the world has changed which Pro-India has given me. Due to
which today I am counted among the affluent people of my area. This is all what
I wanted from this business.




RAJ KUMAR GUPTA


Raj Kumar Gupta, a resident of district Amritsar, Punjab, spent his childhood in
poverty. Therefore, apart from hard work, he had no other means to be
successful. He had resolved in his childhood that he would do something special
to end his poverty and become so rich that poverty would not dare to look again
in his family. Let us know how Pro-India Business played an important role in
realizing this resolution. When he was 17 years old, he started earning money by
selling bangles and bindis. Not satisfied with that earning, he went from
village to village, sold clothes, and then started the business of spices after
earning some money. He got moderate success in this work, but when the ambitions
are big, and then the dreams become big. His dream was to become very big in
life and earn so much money so that he would have a luxurious house, car,
servants and all the amenities.

The struggle for success

Raj Kumar Gupta says, “If I stand on this pedestal today, the credit goes to
Pro-India Company and Mr. Shishpal, Senior Businessman, Pro-India Company. Mr.
Shishpal was my maternal uncle and there was a very good bond between us. It is
a matter of those days when my maternal uncle Mr. Shishpal was introduced
to Pro-India business. Feeling the specialty and strength of that business, Mr.
Shishpal also told me about Pro-India business and said that if you have a
desire to move ahead in your life, then you must do this business. I happily
agreed."

Next day Raj Kumar Gupta went to see the business presentation with Mr.
Shishpal. He saw a business presentation in a seminar. He was so impressed after
seeing the business presentation that he decided to start Pro-India business
immediately.

Since he had enough money, he immediately bought a stock of Pro-India products
and opened his Pro-India shop. In fact, he was already doing business, so he was
well aware of the nuances of business. He also knew that running a business well
required the necessary training. During the training of Pro-India Business, he
has to know very well how to work in this retailing business and how to take the
business to the heights of success.

The destination of success achieved through focus & training

Raj Kumar further says that he initially started the Pro-India business as a
part time business. He would go to their homes or offices by taking time from
the customers, show them the products, and try to sell them.

He used to insist that no matter which brand the product is used by the
customer, he must try his product once and when he likes the product, and then
become his regular customer. He would also explain how his product is different,
special and economical by comparing it with other products. He also explains
that the company has a refund policy, through which the product can be returned
even if you do not like it. He explained to the customers that any complaint
regarding the product could be contacted with the customer care department of
the company. With a clear and transparent approach, customers become their
admirers and buy the product. In this way, he started earning good money through
retailing.

When many of his regular customers became his, he told everyone how they could
become an independent distributor of the company and earn profit by buying the
product at the distributor price. The customer who showed interest in the
distributorship, Raj Kumar would take him to his senior and show the business
presentation. In this way, anyone who was willing to do business with him, he
would have made him a part of his team.

…and then I got success

He further says that I took proper training to take my business forward. Due to
the training, I got the qualities to become a successful businessperson. The
qualities that are required to be a good salesperson have also imbibed in me.
You will be surprised to know that earlier I could not speak properly even among
four people. Now thanks to that training, I am able to speak on stage in front
of thousands of people.

The road to my success was ready. I kept on going on it. Today my Pro-India Shop
network is across the country. I have reached a respected and illustrious level
like the Royal President in the Pro-India business. You know the meaning of
reaching this level and not earning lakhs of rupees per month and lifestyle like
a star. Yes. I travel around the country and abroad. I stay in luxurious hotels.
I am the owner of many vehicles and today I have every means of comfort. Now I
train my team. I inspire them to move forward. So that the rest of the team
members can also fulfill their every dream like me.

Overall, today my resolve to beat poverty and become a successful person has
come true and wherever I am today, it is only and only because
of Pro-India business. Thank you so much for giving me such a wonderful life.




JASMINE KAUR (MANAGER)


I am from Moga, Punjab. Being the wife of a poor farmer, I could hardly get even
two meals a day. There are seven people in my family including my two daughters
and one son who were completely dependent on agriculture. The condition was that
if there were a drought or a flood, then there would be starvation. I am an
uneducated woman who used to grow vegetables and sell them in the market to
support the family. My upline Sukhwinder Kaur, who is also my daughter, always
used to tell me one thing that if you work with me in the work of growing and
selling vegetables, then you will earn manifold more money than this. However, I
keep saying the same thing repeatedly that you are educated and I am illiterate,
what good will I do?

Then one day suddenly my elder daughter called, she said that she is very happy
because her husband got the work of his choice. Now I started asking her
husband, what is this work? Can you tell me? He said that first, you take time
out and sit with me, then I tell you everything about this work and due to this,
I reached the company's business seminar in Moga.

Positive vibes of Pro-India Business

I really liked the friendly atmosphere there. People were hugging each other
with great love, touching the feet of elders, some people touched my feet too,
some were calling me sister, and some were mother. Believe me, tears of joy came
in my eyes that how much respect a poor, illiterate vegetable seller like me is
being given to educated children wearing suit ties here. While even in the
village, no one touches anyone's feet without any reason, while so many good
values are being taught in this company, this thing touched my heart and I was
deeply convinced of Pro-India Company.

Thanks to Pro-India Products

On 21st June 2022, I started my business with Pro-India and bought great
products of Pro-India like Detergent, Dish Washer, Floor Cleaner, Soap, Oil,
Shampoo, Face Wash etc. for my use. I first started using Pro-India products
myself and then I got confidence that these products are great. Earlier I myself
used to use chemical insecticides on vegetables but when I started
using Pro-India products, I started to notice the difference in my own
vegetables. Then customers also started giving good feedback about the quality
of vegetables. The best part was that, when I used to sell vegetables earlier,
there was a risk of vegetables getting spoiled or rotting, due to which
sometimes I had to sell my vegetables at very cheap prices, but high
quality Pro-India Thanks to the products, this fear also ended.

The journey of Successful Businesswomen

In this way, I used all the products of Pro-India myself as well as kept telling
people about the products and thus my business started. The first incentive I
got was total Rs. 1875. I was very happy at that time. Today it may seem like a
small amount to you, but at that time for an old and illiterate woman selling
vegetables, this amount was a big deal. Well my Pro-India business started
running at a decent speed and then I got an incentive of Rs.12270. It seemed
like a dream to me. This is how I took all the training, learned to give
business presentations and products demos.

With the help of my Upline, I kept working hard at Pro-India. Then one day came
when I achieved my dream level Manager in November 2022 and then I earned an
incentive of Rs.317950 in just one month. Thanks to Pro-India, I have bought
land in Jagroan for Rs.15 lakhs and Moga for Rs.72 lakhs. Bought Mahindra
Scorpio. Apart from this, bought a Glamor bike, two Passion Pro bikes and a
Honda shine. Along with this, my biggest responsibility, which my husband had
left this world on my trust, I married my two daughters in a very noble way at a
total cost of 50 lakhs. All this was possible only and only because
of Pro-India business. Apart from all this, Pro-India Business has given me a
secure future for my children and the generations to come.

All Dream comes true

Today, I have a reputation in society thanks to Pro-India Business. I am
traveling abroad with time and money freedom. All the dreams that I had dreamed
of are coming true. The journey of a successful Pro-India businesswoman earning
crores of rupees from a vegetable seller was not easy. Many problems also came
at the turn of life, but once Pro-India took hold of her hand, there was no
question of falling again.

Friends, joining Pro-India Business was the best decision of my life, which I am
proud of today. If you also want to secure the future of your children and
fulfil your dreams, then start Pro-India business today.




KOMAL SHARMA ( CHIEF MANAGER)


A winner who challenged all the difficulties in life, Someone has rightly said
that �if I keep walking on the path, then I will become an expert in walking,
either I will get the destination or I will become a good traveler.� Often, when
we start a new journey, new experiment or new business, there are many
complications in our heart. There are many types of questions, but the person
who keeps his faith aside from these, he definitely achieves success.

A luxurious house, a gleaming car parked in front and sitting in all decked up
suit, people can easily guess what status does Komal Sharma hold. But no one can
guess that Komal Sharma used to be a simple lady a few years ago. Then something
happened that the whole picture changed. To know how this picture changed, I
Komal Sharma, will tell you my story. I am from Panipat, Haryana. I have only
studied till 12th standard. After leaving studies, I had to do something for
living, so I started working in a construction company. I often saw people
sitting in luxurious vehicles. While walking in front of the hotels, I used to
see the beautiful life of these people. I could not understand why all these
things are lacking in my life.

 

This is how things changed

 

My life was running on a different pattern and would continue to move but with
time a wave of change came and everything transformed. I have a cousin Mr. Radhe
Rham who is a Business Head in Pro-India Business. One fine day I got a call
from him and after that, he said “in my view there is a business that will
remove your financial crisis forever and dreams will also be fulfilled.” I
believe that when time comes to bring changes in life, destiny makes it happen.

 

In such a situation, I looked upon my brother's phone as an opportunity to
change the time and agreed to see the business presentation of Pro-India with my
brother.

Doubt in mind

After listening to the success stories of successful people, I believed that I
have my identity but there are many people who can’t even afford two times meal
a day. Today they are supporting others. They became an inspiration to millions
of people and set an example. If they can do it then why can't I do it. I will
definitely do it and I will show it by myself.

To be honest, I was very excited after seeing all this. I started feeling that
now I will earn huge amount in a few days. This was even possible because many
people in the Pro-India business have made good money in a very short period of
time. But I could not see the hard work and training behind them. Although my
senior had explained to me about training. I did not take the training,
disregarding the advice of my senior and started calling people to watch the
business presentation as per their choice.

On my call, some people came to see the business presentation of Pro-India but
when they started asking me questions about the business, I could not tell
anything because I did not take training nor used the products myself. So I
failed in business but when my upline heard this, they explained to me and
motivated to take training. After all these incidents, I learnt a lesson and
also the challenge, which I accepted and started improving myself. I got success
for the first time. Now people were listening to me and I was giving answers to
their questions very easily. Gradually my downline started to form.

There was a time in my life when my family was trying their best to get me out
of business. Now, my whole family is completely supporting me in this business.
Some days back I could barely earn Rs. 200 a day and today I am earning in lakhs
every month. I am still the same Komal Sharma and this world is also the same.
Just the view of the world has changed which Pro-India has given me. Due to
which today I am counted among the affluent people of my area. This is all what
I wanted from this business.




RAJ KUMAR GUPTA


Raj Kumar Gupta, a resident of district Amritsar, Punjab, spent his childhood in
poverty. Therefore, apart from hard work, he had no other means to be
successful. He had resolved in his childhood that he would do something special
to end his poverty and become so rich that poverty would not dare to look again
in his family. Let us know how Pro-India Business played an important role in
realizing this resolution. When he was 17 years old, he started earning money by
selling bangles and bindis. Not satisfied with that earning, he went from
village to village, sold clothes, and then started the business of spices after
earning some money. He got moderate success in this work, but when the ambitions
are big, and then the dreams become big. His dream was to become very big in
life and earn so much money so that he would have a luxurious house, car,
servants and all the amenities.

The struggle for success

Raj Kumar Gupta says, “If I stand on this pedestal today, the credit goes to
Pro-India Company and Mr. Shishpal, Senior Businessman, Pro-India Company. Mr.
Shishpal was my maternal uncle and there was a very good bond between us. It is
a matter of those days when my maternal uncle Mr. Shishpal was introduced
to Pro-India business. Feeling the specialty and strength of that business, Mr.
Shishpal also told me about Pro-India business and said that if you have a
desire to move ahead in your life, then you must do this business. I happily
agreed."

Next day Raj Kumar Gupta went to see the business presentation with Mr.
Shishpal. He saw a business presentation in a seminar. He was so impressed after
seeing the business presentation that he decided to start Pro-India business
immediately.

Since he had enough money, he immediately bought a stock of Pro-India products
and opened his Pro-India shop. In fact, he was already doing business, so he was
well aware of the nuances of business. He also knew that running a business well
required the necessary training. During the training of Pro-India Business, he
has to know very well how to work in this retailing business and how to take the
business to the heights of success.

The destination of success achieved through focus & training

Raj Kumar further says that he initially started the Pro-India business as a
part time business. He would go to their homes or offices by taking time from
the customers, show them the products, and try to sell them.

He used to insist that no matter which brand the product is used by the
customer, he must try his product once and when he likes the product, and then
become his regular customer. He would also explain how his product is different,
special and economical by comparing it with other products. He also explains
that the company has a refund policy, through which the product can be returned
even if you do not like it. He explained to the customers that any complaint
regarding the product could be contacted with the customer care department of
the company. With a clear and transparent approach, customers become their
admirers and buy the product. In this way, he started earning good money through
retailing.

When many of his regular customers became his, he told everyone how they could
become an independent distributor of the company and earn profit by buying the
product at the distributor price. The customer who showed interest in the
distributorship, Raj Kumar would take him to his senior and show the business
presentation. In this way, anyone who was willing to do business with him, he
would have made him a part of his team.

…and then I got success

He further says that I took proper training to take my business forward. Due to
the training, I got the qualities to become a successful businessperson. The
qualities that are required to be a good salesperson have also imbibed in me.
You will be surprised to know that earlier I could not speak properly even among
four people. Now thanks to that training, I am able to speak on stage in front
of thousands of people.

The road to my success was ready. I kept on going on it. Today my Pro-India Shop
network is across the country. I have reached a respected and illustrious level
like the Royal President in the Pro-India business. You know the meaning of
reaching this level and not earning lakhs of rupees per month and lifestyle like
a star. Yes. I travel around the country and abroad. I stay in luxurious hotels.
I am the owner of many vehicles and today I have every means of comfort. Now I
train my team. I inspire them to move forward. So that the rest of the team
members can also fulfill their every dream like me.

Overall, today my resolve to beat poverty and become a successful person has
come true and wherever I am today, it is only and only because
of Pro-India business. Thank you so much for giving me such a wonderful life.



Next
 * 1
 * 2
 * 3

View more story


VIDEO GALLERY

View more video


FEEDBACK/
COMPLAINT


DOWNLOAD


IDSA
CERTIFICATION


ISO CERTIFIED

Head Office
Pro-India
Garg Plaza, Jakhar Road, Patran - 147105

Customer Care Tel: +9173408-02023

Email: support@proindia.co

About us
 * About Proindia
 * About Galway
 * Vision Mission
   
 * Message from the Directors
   

Media room
 * Proindia Winner Magazine
 * Proindia Newsletter
 * News
 * Image Gallery
 * Videos
 * Blogs

Subscribe newsletter

Name:
Email: Subscribe


--------------------------------------------------------------------------------

Products
 * Health & Nutrition
 * Ayurvedic
 * Food Beverage
 * Beauty & Bright
 * Mens Care
 * Footware
 * Mobile Accessories
 * Clothing

Join us
 * Why Proindia
 * Opportunity
 * How to Start
 * Terms & Privacy
 * Term of Use
 * Testimonial
 * Success Story
   

Contact us
 * Head & Branch Office
   
 * Support Center
 * Complaints & feedback
   

Follow us on
 * 
 * 
 * 
 * 
 * 





--------------------------------------------------------------------------------

×
Home / Login
Mobile Number

Verification Code


LOGIN SUBMIT



Registration
Registration