Sign Up Form with live validation

Developer
Size
3,712 Kb
Views
8,096

How do I make an sign up form with live validation?

A simple sign up form that uses stationery float labels for usability and uses jquery to live validate the password information.. What is a sign up form with live validation? How do you make a sign up form with live validation? This script and codes were developed by Chris Steurer on 08 December 2022, Thursday.

Sign Up Form with live validation Previews

Sign Up Form with live validation - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Sign Up Form with live validation</title> <link rel="stylesheet" href="css/style.css">
</head>
<body>
<form action="#" method="post"> <h2>Sign Up</h2>	<p>	<label for="Email" class="floatLabel">Email</label>	<input id="Email" name="Email" type="text">	</p>	<p>	<label for="password" class="floatLabel">Password</label>	<input id="password" name="password" type="password">	<span>Enter a password longer than 8 characters</span>	</p>	<p>	<label for="confirm_password" class="floatLabel">Confirm Password</label>	<input id="confirm_password" name="confirm_password" type="password">	<span>Your passwords do not match</span>	</p>	<p>	<input type="submit" value="Create My Account" id="submit">	</p>	</form> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Sign Up Form with live validation - Script Codes CSS Codes

body { background: #384047; font-family: sans-serif; font-size: 10px;
}
form { background: #fff; padding: 4em 4em 2em; max-width: 400px; margin: 50px auto 0; box-shadow: 0 0 1em #222; border-radius: 2px;
}
form h2 { margin: 0 0 50px 0; padding: 10px; text-align: center; font-size: 30px; color: #666666; border-bottom: solid 1px #e5e5e5;
}
form p { margin: 0 0 3em 0; position: relative;
}
form input { display: block; box-sizing: border-box; width: 100%; outline: none; margin: 0;
}
form input[type="text"],
form input[type="password"] { background: #fff; border: 1px solid #dbdbdb; font-size: 1.6em; padding: .8em .5em; border-radius: 2px;
}
form input[type="text"]:focus,
form input[type="password"]:focus { background: #fff;
}
form span { display: block; background: #F9A5A5; padding: 2px 5px; color: #666;
}
form input[type="submit"] { background: rgba(148, 186, 101, 0.7); box-shadow: 0 3px 0 0 rgba(123, 163, 73, 0.7); border-radius: 2px; border: none; color: #fff; cursor: pointer; display: block; font-size: 2em; line-height: 1.6em; margin: 2em 0 0; outline: none; padding: .8em 0; text-shadow: 0 1px #68B25B;
}
form input[type="submit"]:hover { background: #94af65; text-shadow: 0 1px 3px rgba(70, 93, 41, 0.7);
}
form label { position: absolute; left: 8px; top: 12px; color: #999; font-size: 16px; display: inline-block; padding: 4px 10px; font-weight: 400; background-color: rgba(255, 255, 255, 0); -moz-transition: color 0.3s, top 0.3s, background-color 0.8s; -o-transition: color 0.3s, top 0.3s, background-color 0.8s; -webkit-transition: color 0.3s, top 0.3s, background-color 0.8s; transition: color 0.3s, top 0.3s, background-color 0.8s;
}
form label.floatLabel { top: -11px; background-color: rgba(255, 255, 255, 0.8); font-size: 14px;
}

Sign Up Form with live validation - Script Codes JS Codes

//Problem: Hints are shown even when form is valid
//Solution: Hide and show them at appropriate times
var $password = $("#password");
var $confirmPassword = $("#confirm_password");
//Hide hints
$("form span").hide();
function isPasswordValid() { return $password.val().length > 8;
}
function arePasswordsMatching() { return $password.val() === $confirmPassword.val();
}
function canSubmit() { return isPasswordValid() && arePasswordsMatching();
}
function passwordEvent(){ //Find out if password is valid if(isPasswordValid()) { //Hide hint if valid $password.next().hide(); } else { //else show hint $password.next().show(); }
}
function confirmPasswordEvent() { //Find out if password and confirmation match if(arePasswordsMatching()) { //Hide hint if match $confirmPassword.next().hide(); } else { //else show hint $confirmPassword.next().show(); }
}
function enableSubmitEvent() { $("#submit").prop("disabled", !canSubmit());
}
//When event happens on password input
$password.focus(passwordEvent).keyup(passwordEvent).keyup(confirmPasswordEvent).keyup(enableSubmitEvent);
//When event happens on confirmation input
$confirmPassword.focus(confirmPasswordEvent).keyup(confirmPasswordEvent).keyup(enableSubmitEvent);
enableSubmitEvent();
Sign Up Form with live validation - Script Codes
Sign Up Form with live validation - Script Codes
Home Page Home
Developer Chris Steurer
Username stoypenny
Uploaded December 08, 2022
Rating 3.5
Size 3,712 Kb
Views 8,096
Do you need developer help for Sign Up Form with live validation?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Chris Steurer (stoypenny) Script Codes
Create amazing marketing copy with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!