Help This Headache LOL How To Edit HTML Leadpage Template

4 replies
I'm having a world of trouble. I'm not a coder and I was doing well modifying a free leadpages HTML template, until BOOM, it came to importing my aweber details so that I could collect leads using their template.

Anyone have any tips on relieving myself of this headache?

So below you'll see the submit button action is outside of the form brackets. This allows me to keep the submit button leadpages provides, but I can't click it to add a emails to my list. I put this same code code within the form brackets and I can submit emails BUT can't use their submit button graphic.

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

<form method="post" action="http://www.aweber.com/scripts/addlead.pl">
<div class="row">
<input type="text" name="email" value="Enter Valid Email Here..." class="field" />
<input type="hidden" name="listname" value="awlist0000000" />
<input type="hidden" name="redirect" value="http://www.aweber.com/thankyou.htm?m=default" id="redirect_fxxxxxxxxxxx" />
<input type="hidden" name="meta_adtracking" value="custom form" />
<input type="hidden" name="meta_message" value="1" />
<input type="hidden" name="meta_forward_vars" value="1" />
</div>
</form>
<input type="submit" name="" value="" class="submit" />
</div>
#edit #headache #html #leadpage #lol #template
  • Profile picture of the author kingjpm
    not the best way, but here is a old trick you can use..

    HTML Code:
    <form method="post" action="http://www.aweber.com/scripts/addlead.pl" id="yourform">
                    <div class="row">
                        <input type="text" name="email" value="Enter Valid Email Here..." class="field" />
                        <input type="hidden" name="listname" value="awlist0000000" />
                        <input type="hidden" name="redirect" value="http://www.aweber.com/thankyou.htm?m=default" id="redirect_fxxxxxxxxxxx" />
                        <input type="hidden" name="meta_adtracking" value="custom form" />
                        <input type="hidden" name="meta_message" value="1" />  
                        <input type="hidden" name="meta_forward_vars" value="1" />             
                    </div>            
                </form>
                <button class="submit" onclick="document.getElementById('yourform').submit();"></button>
    Signature
    RogueDen.com
    {{ DiscussionBoard.errors[9327072].message }}
    • Profile picture of the author shabit87
      OMG!! I can't tell you how much I could hug ya right now, this has been giving me a headache all night and the past 4 hours. I can't thank you enough!!! If you're even in the Tampa Bay area please message me, drinks (or coffee/tea if you're not a drinker) on me!!
      {{ DiscussionBoard.errors[9327125].message }}
      • Profile picture of the author kingjpm
        You are very much welcome. I will be sure to message if in the area. I am one to never pass up a free drink. : )
        Signature
        RogueDen.com
        {{ DiscussionBoard.errors[9327439].message }}
        • Profile picture of the author BBCMember
          shabit87, where did you put your aweber code? I'm also trying to use one of LeadPages's free templates, but I don't see any code in index.html where you put the <form> code.

          The template I'm trying to use is the 3rd one down on this page:

          The Highest-Converting Landing Page We

          Can you help?
          {{ DiscussionBoard.errors[9880976].message }}

Trending Topics