For a normal input field just use <input type=text /> instead. you will see
now for the javascript.
if the input field is left empty, this script would tell the user.
<script type="text/javascript"> //this function is activated by the onblur event. function check()
{
if (document.getElementById("password".value)
{ //this script is activated if the input field is empty failed("field is empty" //this activates the function called failed(reason). The value for reason Is now "field is empty" when using the function }
else
{ //if the function isn't activated it does this instead. success(); //this activates the function called success(). Because there is nothing between the brackets no information is returned. This is ok because no information is needed. }
}
</script>
Now we need to make the functions and create what they do.
I will use the functions needed from above.
function success()
{ //function activated after the success() function is activated. document.getElementById("password".style="background-color:green"; //this will make the text field go green if it's valid. }
function fail(reason)
{ //function activated when the fail(reason) function is activated. document.getElementById("password".style="background-color:red"; //this will make the text field go red if it's invalid. document.getElementById("failed".innerHTML=reason; //this will display the reason why it failed that was returned by the function. This is a handy method if you want to use more than one reason why the password is invalid. }
Now here's the final code.
<html>
<head>
[color=red]function success()
{
document.getElementById("password".style="background-color:green";
}
function fail(reason)
{
document.getElementById("password".style="background-color:red";
document.getElementById("failed".innerHTML=reason;
} <script type="text/javascript">
[color=blue]//this function is activated by the onblur event.
function check()
{
if (document.getElementById("password".value)
{
failed("field is empty"
}
else
{
success();
}
}
</script>
</head>
<body>
<form>
<table>
<tr>
<td>
<input type="password" id="password" onblur="check()" />
</td>
<td id="failed">
</td>
</tr>
</table>
</form>
</body>
</html>
You can use this for things like minimising the size of the password or if you want it to require letters and numbers. If you need help with matching the php so It does the same you can ask me in comment. I will reply to everything on this blog.
But I'm new with php. so..... i'm not great.
Make sure that JavaScript is written as one word and there is no spaces in it while doing this.
I guess that can work. You would need a php code for that though as you can see JavaScript codes. Php is exactly the same but you put $ before things that store text.