Updating the Email Signup Widget

 

Keep In Touch?

*
*Required

Method 1: Add a Line of Code to Existing Widget

Add the line of code below to the existing widget. Insert the following code within the <form> tags.

<div style="display: none;"><input type="text" id="confirm_email" name="confirm_email" size="20" maxvalue="50" value="confirm email address"></div>

Method 2: Replace entire widget

Replace the entire widget with the complete widget code below. 

<div class="EmailSignup">
   <form action="https://admin.boomtime.com/subscribe" id="form" method=
   "post" name="form">
       <dl>
           <dd>
               <h3 style="text-align: center">Keep In Touch?<br></h3>
               <dl>
                   <dt><label for="email">Email:</label></dt>
                   <dd><input id="email" maxlength="40" name="email" size="15"
                   type="text" value=""><span style=
                   "color: #ff0000;">*</span></dd>
                   <dt><label for="first_name">First name:</label></dt>
                   <dd><input id="first_name" maxlength="30" name="first_name"
                   size="15" type="text" value=""></dd>
                   <dt><label for="last_name">Last name:</label></dt>
                   <dd><input id="last_name" maxlength="30" name="last_name"
                   size="15" type="text" value=""></dd>
                   <dt><label for="phone">Get TXT?</label></dt>
                   <dd><input id="phone" maxlength="15" name="phone" size="15"
                   type="text" value=""></dd>
                   <dt><label for="birthday">Birthday:</label></dt>
                   <dd><input id="birthday" name="birthday" size="15" type=
                   "text" value=""></dd>
                    <div style="display: none;"><input type="text" id="confirm_email" name="confirm_email" size="20" maxvalue="50" value="confirm email address"></div>
                   <dt><span style="color: #ff0000;">*Required</span></dt>
                   <dd>
                       <dl>
                           <dt><input id="SignUpSubmit" name="Submit" type="submit"
                           value="Join"></dt>
                       </dl>
                   </dd>
               </dl>
           </dd>
       </dl>
   </form>
</div>