Skip to product information
1 of 1
Published:2023.10.06

Example of setting up a confirmation email form that cannot be submitted unless it matches on the account creation page of the Shopify theme "Dawn"

Example of setting up a confirmation email form that cannot be submitted unless it matches on the account creation page of the Shopify theme "Dawn"

  • Membership registration promotion
  • HTML/CSS
  • Javascript
View full details
You can register a Shopify account without email address confirmation (unless you ask Shopify to change the settings). Therefore, if you register with the wrong address, you may not be able to log in again. This is an example of how to set up a confirmation form to prevent input errors.


Example of setting up a confirmation email form that cannot be sent unless it matches on the account creation page of the theme "Dawn"



Setup Step 1: Edit the code in "main-register.liquid" (Part 1)


Setup Step 2: Edit the code in "main-register.liquid" (Part 2)


After making a purchase (all items are ¥0), you will be able to view the sample code.

If you have already made a purchase, please login here.

Sample Codes

Test Theme :Dawn/Rise 15.2.0

Setup Step 1: Edit the code in "main-register.liquid" (Part 1)

<div class="field">
<input
	type="email"
	id="RegisterForm-email-confirm"
	spellcheck="false"
	autocapitalize="off"
	placeholder="確認用メール"
	>
<label for="RegisterForm-email-confirm">確認用メール</label>
</div>
<div id="RegisterForm-email-status"></div>


Setup Step 2: Edit the code in "main-register.liquid" (Part 2)

<script>
	// su...
Related Post