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

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form