Name and Email in the fields
-
I am trying to figure out how to insert the words ENTER NAME on the name field and ENTER YOUR EMAIL into the Email field on the auto responder.
so that when the person see’s the fields they know what to do.I have looked everywhere in the files can someone help
I am trying to insert this code into my own auto-repondervalue=”Enter your name” and “Enter your email” into your email field
Here is my code. where would i put the value into the code below
________________________________________________<form method=”post” onsubmit=”return BFTValidate(this);”>
<p><label>Name:</label>?<input type=”text” name=”user_name”></p>
<p><label>Email:</label>?<input type=”text” name=”email”></p>
<p align=”center”><input type=”submit” value=”Register”></p>
<input type=”hidden” name=”bft” value=”register”>
</form><script type=”text/javascript” >
function BFTValidate(frm) {
var email = frm.email.value;
if(email==”” || email.indexOf(“@”)<1 ||email.indexOf(“.”)<1) {
alert(“Please fill in valid email address!”);
frm.email.focus();
return false;
}return true;
}
</script>
- The topic ‘Name and Email in the fields’ is closed to new replies.