
Untitled
By: a guest on
Apr 15th, 2012 | syntax:
HTML | size: 1.20 KB | hits: 10 | expires: Never
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test form</title>
<script type="text/javascript" src="externalJava.js"></script>
</head>
<body>
<form id="signup" action="somephpthing.php" method="post" onsubmit="return false">
<label>
First Name
<input type="text" name="firstName" />
</label><br>
<label>
Last Name
<input type="text" name="lastName" />
</ label><br>
<label>
Password
<input type="password" name="password" />
</ label><br>
<label>
Confirm Password
<input type="password" name="confirmPassword" />
</ label><br>
<label>
Email Address
<input type="text" name="emailAddress" />
</ label><br>
<label>
Confirm Email Address
<input type="text" name="confirmEmailAddress" />
</ label><br>
<label>
Phone Number
<input type="text" name="phoneNumber" />
</ label><br>
<label>
<input type="checkbox" name="newsletter" value="yes" />
Yes, I'd like to sign up to the clubs newsletter
</label>
<input type="submit" value="Submit" onclick="validation(document.getElementById('signup'))"/>
</form>
</body>
</html>