Allow customer to login only if they accept terms & conditionLog in user with unconfirmed emailStore view accessIs Magento Claiming Ownership of All Magento Markplace Extensions?Magento 2 API not authenticatingMagento 2 : pending registration activation email - reminder mail module/extensionCustom register formCheckout Login form Validation Knockout Js Magento 2How to show customer first name and last name after logged in Magento2.2.5?Looking for email only signup extension for magento 2Magento 2 - How to make a event based module in back end?

What are these panels underneath the wing root of a A380?

Eric Andre had a dream

What should I do if actually I found a serious flaw in someone's PhD thesis and an article derived from that PhD thesis?

What does it mean for a folder to have suid permission?

What does 〇〇〇〇 mean when combined with おじさん?

What is the question mark?

A Magic Diamond

Are there any cons in using rounded corners for bar graphs?

Is nullptr falsy?

Is the Microsoft recommendation to use C# properties applicable to game development?

Why should I pay for an SSL certificate?

What are some tips and tricks for finding the cheapest flight when luggage and other fees are not revealed until far into the booking process?

Short comic about alien explorers visiting an abandoned world with giant statues that turn out to be alive but move very slowly

What if a restaurant suddenly cannot accept credit cards, and the customer has no cash?

How can I enter recovery mode (for Mac OS, on an iMac) remotely?

Problem with GFCI at start of circuit with both lights and two receptacles

How do I pass a "list of lists" as the argument to a function of the form F[x,y]?

Heyawacky: Ace of Cups

Is there a word for returning to unpreparedness?

How to say "have ideas above his station" in French?

How does the ability of Bloodthirsty Aerialist resolve with other life link creatures?

What is the fastest way to level past 95 in Diablo II?

Select elements of a list by comparing it to another list

Why don't modern jet engines use forced exhaust mixing?



Allow customer to login only if they accept terms & condition


Log in user with unconfirmed emailStore view accessIs Magento Claiming Ownership of All Magento Markplace Extensions?Magento 2 API not authenticatingMagento 2 : pending registration activation email - reminder mail module/extensionCustom register formCheckout Login form Validation Knockout Js Magento 2How to show customer first name and last name after logged in Magento2.2.5?Looking for email only signup extension for magento 2Magento 2 - How to make a event based module in back end?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















Allow user to access his account only if accept Terms and Condition on its first log in.
Sign in the agreement copy with the name or email id.



Can any one tell me how can I achieve this.



Any help would be appreciated.



Thanks in advance..!










share|improve this question
































    0















    Allow user to access his account only if accept Terms and Condition on its first log in.
    Sign in the agreement copy with the name or email id.



    Can any one tell me how can I achieve this.



    Any help would be appreciated.



    Thanks in advance..!










    share|improve this question




























      0












      0








      0








      Allow user to access his account only if accept Terms and Condition on its first log in.
      Sign in the agreement copy with the name or email id.



      Can any one tell me how can I achieve this.



      Any help would be appreciated.



      Thanks in advance..!










      share|improve this question
















      Allow user to access his account only if accept Terms and Condition on its first log in.
      Sign in the agreement copy with the name or email id.



      Can any one tell me how can I achieve this.



      Any help would be appreciated.



      Thanks in advance..!







      magento2 login






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Aug 5 at 11:25









      Sanjay Gohil

      6802 silver badges18 bronze badges




      6802 silver badges18 bronze badges










      asked Aug 5 at 10:50









      insoftserviceinsoftservice

      1364 bronze badges




      1364 bronze badges























          1 Answer
          1






          active

          oldest

          votes


















          0














          You can achieve this functionality by Put a Terms and Conditions checkbox on the register form.



          Put below code in your customer register form template file (Phtml File)



          <div style="width: auto; margin: 0;" class="field choice newsletter">
          <input type="checkbox" data-validate="required:true" name="custom-terms" title="<?php /* @escapeNotVerified */ echo __('Terms & conditions') ?>" id="register-input-custom" class="checkbox">
          <label for="custom-terms" class="label">
          <span>
          <?php echo __('I have read and accept the ') ?><a href="<?php echo $this->getUrl('privacy_policy');?>"><?php echo __('PRIVACY POLICY') ?></a><?php echo __(' and ') ?><a href="<?php echo $this->getUrl('terms_conditions');?>"><?php echo __('CONDITIONS OF USE') ?></a>
          </span>
          </label>
          </div>





          share|improve this answer

























          • thx. But i want to make them right there name or email id. That too for first login only. Hope you might have seen EULA

            – insoftservice
            Aug 6 at 9:54














          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "479"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f284433%2fallow-customer-to-login-only-if-they-accept-terms-condition%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You can achieve this functionality by Put a Terms and Conditions checkbox on the register form.



          Put below code in your customer register form template file (Phtml File)



          <div style="width: auto; margin: 0;" class="field choice newsletter">
          <input type="checkbox" data-validate="required:true" name="custom-terms" title="<?php /* @escapeNotVerified */ echo __('Terms & conditions') ?>" id="register-input-custom" class="checkbox">
          <label for="custom-terms" class="label">
          <span>
          <?php echo __('I have read and accept the ') ?><a href="<?php echo $this->getUrl('privacy_policy');?>"><?php echo __('PRIVACY POLICY') ?></a><?php echo __(' and ') ?><a href="<?php echo $this->getUrl('terms_conditions');?>"><?php echo __('CONDITIONS OF USE') ?></a>
          </span>
          </label>
          </div>





          share|improve this answer

























          • thx. But i want to make them right there name or email id. That too for first login only. Hope you might have seen EULA

            – insoftservice
            Aug 6 at 9:54
















          0














          You can achieve this functionality by Put a Terms and Conditions checkbox on the register form.



          Put below code in your customer register form template file (Phtml File)



          <div style="width: auto; margin: 0;" class="field choice newsletter">
          <input type="checkbox" data-validate="required:true" name="custom-terms" title="<?php /* @escapeNotVerified */ echo __('Terms & conditions') ?>" id="register-input-custom" class="checkbox">
          <label for="custom-terms" class="label">
          <span>
          <?php echo __('I have read and accept the ') ?><a href="<?php echo $this->getUrl('privacy_policy');?>"><?php echo __('PRIVACY POLICY') ?></a><?php echo __(' and ') ?><a href="<?php echo $this->getUrl('terms_conditions');?>"><?php echo __('CONDITIONS OF USE') ?></a>
          </span>
          </label>
          </div>





          share|improve this answer

























          • thx. But i want to make them right there name or email id. That too for first login only. Hope you might have seen EULA

            – insoftservice
            Aug 6 at 9:54














          0












          0








          0







          You can achieve this functionality by Put a Terms and Conditions checkbox on the register form.



          Put below code in your customer register form template file (Phtml File)



          <div style="width: auto; margin: 0;" class="field choice newsletter">
          <input type="checkbox" data-validate="required:true" name="custom-terms" title="<?php /* @escapeNotVerified */ echo __('Terms & conditions') ?>" id="register-input-custom" class="checkbox">
          <label for="custom-terms" class="label">
          <span>
          <?php echo __('I have read and accept the ') ?><a href="<?php echo $this->getUrl('privacy_policy');?>"><?php echo __('PRIVACY POLICY') ?></a><?php echo __(' and ') ?><a href="<?php echo $this->getUrl('terms_conditions');?>"><?php echo __('CONDITIONS OF USE') ?></a>
          </span>
          </label>
          </div>





          share|improve this answer













          You can achieve this functionality by Put a Terms and Conditions checkbox on the register form.



          Put below code in your customer register form template file (Phtml File)



          <div style="width: auto; margin: 0;" class="field choice newsletter">
          <input type="checkbox" data-validate="required:true" name="custom-terms" title="<?php /* @escapeNotVerified */ echo __('Terms & conditions') ?>" id="register-input-custom" class="checkbox">
          <label for="custom-terms" class="label">
          <span>
          <?php echo __('I have read and accept the ') ?><a href="<?php echo $this->getUrl('privacy_policy');?>"><?php echo __('PRIVACY POLICY') ?></a><?php echo __(' and ') ?><a href="<?php echo $this->getUrl('terms_conditions');?>"><?php echo __('CONDITIONS OF USE') ?></a>
          </span>
          </label>
          </div>






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 5 at 11:11









          Sanjay GohilSanjay Gohil

          6802 silver badges18 bronze badges




          6802 silver badges18 bronze badges















          • thx. But i want to make them right there name or email id. That too for first login only. Hope you might have seen EULA

            – insoftservice
            Aug 6 at 9:54


















          • thx. But i want to make them right there name or email id. That too for first login only. Hope you might have seen EULA

            – insoftservice
            Aug 6 at 9:54

















          thx. But i want to make them right there name or email id. That too for first login only. Hope you might have seen EULA

          – insoftservice
          Aug 6 at 9:54






          thx. But i want to make them right there name or email id. That too for first login only. Hope you might have seen EULA

          – insoftservice
          Aug 6 at 9:54


















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f284433%2fallow-customer-to-login-only-if-they-accept-terms-condition%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

          Log in Navigation menu

          Invalid response line returned from server: HTTP/2 401 | ErrorPlease Please Help With Error 500 Internal Server Error after upgrading from 1.7 to 1.9Unable to place new customer orders in admin backendMagento - For “Manage Categories” Forbidden You do not have permission to access this documentHTTP ERROR 500 when using require(_once) app/Mage.phpMemcached causing Web Setup Wizard ErrorCould not create an acl object: Invalid XMLAn error occurred on the server. Please try to place the order againInvalid response line returned from server: HTTP/2 200 - message after update to 2.1.7Magento-CE 2.3.0 installation error on XamppMagento 2.2.6- After Migration all default Payment Methods are not working fine