Jump to content

Form Validation


sho88

Recommended Posts

Hi guys, I'm sure this sounds very silly, but I'm not a JavaScript guy, not as good with the basic fundamentals, however, I'm more of a PHP, HTML, CSS guy, so here's my problem.

 

At the moment, I'm having troubles with my form validation. Could anyone have a look and see if there's any problem asap please?

Many thanks

Sho.

 

Javascript.js

// JavaScript Document
window.onload = validation_1();

function validation_1() {
if (document.login.username.value == "")
{
	document.getElementById("error_username").style.display = "inline";
	document.login.username.focus();
	return false;
}
}

 

form.php

<div class="login">
<h3>Please login to your account.</h3>
  <form id="form1" method="post" action="loginAuth.php" id="login" onsubmit="return validation_1(); ">
    <div class="form-row">
      <span class="label">User Name</span>
      <input type="text" name="un" class="adduser" id="username" />
      <div id="error_username" style="color:#C00; display:none;">***</div>
      <br /><br /><br />    
      <span class="label">Password</span>
      <input type="password" name="pw" class="adduser" id="password" />
      <div id="error_password" style="color:#C00; display:none;">***</div>
      <br /><br /><br />    
      <input type="submit" value="Login" style="padding:5px;" />
    </div>
  </form>
</div>

<img src="img/index.png" title="Home Page" style="float:right; margin-top:-280px; margin-right:80px;" />

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.