Sign Up form - just 2 more little thigs that i need

Discussion in 'HTML & Website Design' started by rap_rap, Nov 10, 2010.

  1. #1
    Hey everyone


    -I got the below HTML code and the thing i want to change are:

    1- There are 2 words that i would to bold them:

    -"First Name"

    -"Email"

    2.I want to delete the next words that showing up on the Sign up form:

    1-" * = Required Field"

    2- "Email Marketing You Can Trust"

    you can see here what i mean:

    http://professional-marketing-guides.com/


    The HTML code:


    -Here's the HTML code:

    <style>
    .link,
    .link a,
    .signupframe
    {
    color: #226699;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    }
    .link,
    .link a {
    text-decoration: none;
    }
    .signupframe {
    border: 1px solid #FFFCFC;
    background: #32E4F1;
    }
    .signupframe .required {
    font-size: 10px;
    }
    </style>
    <form method=post action="https://app.icontact.com/icp/signup.php" name="icpsignup" id="icpsignup182" accept-charset="UTF-8" onsubmit="return verifyRequired182();" >
    <input type=hidden name=redirect value="http://www.icontact.com/www/signup/thanks.html" />
    <input type=hidden name=errorredirect value="http://www.icontact.com/www/signup/error.html" />

    <div id="SignUp">
    <table width="220" class="signupframe" border="0" cellspacing="0" cellpadding="5">
    <tr>
    <td valign=top align=right>
    <span class="required">*</span> First Name
    </td>
    <td align=left>
    <input type=text name="fields_fname">
    </td>
    </tr>
    <tr>
    <td valign=top align=right>
    <span class="required">*</span> Email
    </td>
    <td align=left>
    <input type=text name="fields_email">
    </td>
    </tr>
    <input type=hidden name="listid" value="3522">
    <input type=hidden name="specialid:3522" value="ITIU">

    <input type=hidden name=clientid value="793066">
    <input type=hidden name=formid value="182">
    <input type=hidden name=reallistid value="1">
    <input type=hidden name=doubleopt value="0">
    <tr>
    <td> </td>
    <td><span class="required">*</span> = Required Field</td>
    </tr>
    <tr>
    <td> </td>
    <td><input type="submit" name="Submit" value="Submit"></td>
    </tr>
    </table>
    </div>
    </form>
    <script type="text/javascript">

    var icpForm182 = document.getElementById('icpsignup182');

    if (document.location.protocol === "https:")

    icpForm182.action = "https://app.icontact.com/icp/signup.php";
    function verifyRequired182() {
    if (icpForm182["fields_fname"].value == "") {
    icpForm182["fields_fname"].focus();
    alert("The First Name field is required.");
    return false;
    }
    if (icpForm182["fields_email"].value == "") {
    icpForm182["fields_email"].focus();
    alert("The Email field is required.");
    return false;
    }


    return true;
    }
    </script>
    <span class="link"><a href="http://www.icontact.com">Email Marketing</a> You Can Trust</span>


    if you can help me wit that it will be super ....Thanks !
     
    rap_rap, Nov 10, 2010 IP
  2. mcfox

    mcfox Wind Maker

    Messages:
    7,526
    Likes Received:
    716
    Best Answers:
    0
    Trophy Points:
    360
    #2
    Wrap the word you want bolded in the appropriate tag (<strong></strong>) - should work fine unless the css is overriding it. I've given an example below.

    <style>
    .link,
    .link a,
    .signupframe
    {
    color: #226699;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    }
    .link,
    .link a {
    text-decoration: none;
    }
    .signupframe {
    border: 1px solid #FFFCFC;
    background: #32E4F1;
    }
    .signupframe .required {
    font-size: 10px;
    }
    </style>
    <form method=post action="https://app.icontact.com/icp/signup.php" name="icpsignup" id="icpsignup182" accept-charset="UTF-8" onsubmit="return verifyRequired182();" >
    <input type=hidden name=redirect value="http://www.icontact.com/www/signup/thanks.html" />
    <input type=hidden name=errorredirect value="http://www.icontact.com/www/signup/error.html" />
    
    <div id="SignUp">
    <table width="220" class="signupframe" border="0" cellspacing="0" cellpadding="5">
    <tr>
    <td valign=top align=right>
    <span class="required">*</span> First Name
    </td>
    <td align=left>
    <input type=text name="fields_fname">
    </td>
    </tr>
    <tr>
    <td valign=top align=right>
    <span class="required">*</span> <strong>Email</strong>
    </td>
    <td align=left>
    <input type=text name="fields_email">
    </td>
    </tr>
    <input type=hidden name="listid" value="3522">
    <input type=hidden name="specialid:3522" value="ITIU">
    
    <input type=hidden name=clientid value="793066">
    <input type=hidden name=formid value="182">
    <input type=hidden name=reallistid value="1">
    <input type=hidden name=doubleopt value="0">
    <tr>
    <td> </td>
    <td><span class="required">*</span> = Required Field</td>
    </tr>
    <tr>
    <td> </td>
    <td><input type="submit" name="Submit" value="Submit"></td>
    </tr>
    </table>
    </div>
    </form>
    <script type="text/javascript">
    
    var icpForm182 = document.getElementById('icpsignup182');
    
    if (document.location.protocol === "https:")
    
    icpForm182.action = "https://app.icontact.com/icp/signup.php";
    function verifyRequired182() {
    if (icpForm182["fields_fname"].value == "") {
    icpForm182["fields_fname"].focus();
    alert("The First Name field is required.");
    return false;
    }
    if (icpForm182["fields_email"].value == "") {
    icpForm182["fields_email"].focus();
    alert("The Email field is required.");
    return false;
    }
    
    
    return true;
    }
    </script>
    <span class="link"><a href="http://www.icontact.com">Email Marketing</a> You Can Trust</span>
    HTML:
     
    mcfox, Nov 10, 2010 IP
  3. TKY_Publishing

    TKY_Publishing Well-Known Member

    Messages:
    270
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    130
    Digital Goods:
    7
    Articles:
    28
    #3
    @rap_rap,

    W3C will give you all the ammo you need for any of your future coding concerns. It's a great resource and I use it all the time.
     
    TKY_Publishing, Nov 11, 2010 IP
  4. rap_rap

    rap_rap Peon

    Messages:
    27
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thank you very much...to above of you :)
     
    rap_rap, Nov 11, 2010 IP
  5. →» ρяιη¢є «←

    →» ρяιη¢є «← Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Great Scripting