The Complete Guide to HTML Forms and Constraint Validation
In this article, we look at HTML form fields and the validation options offered by HTML5. We’ll also look at how these can be enhanced through the use of CSS and JavaScript.
What is Constraint Validation?
Every form field has a purpose. And this purpose is often governed by contraints — or the rules governing what should and shouldn’t be entered into each form field. For example, an email
field will require a valid email address; a password
field might require certain types of characters and have a minimum number of required characters; and a text field might have a limit on how many characters can be entered.
Modern browsers have the ability to check that these constraints are being observed by users, and can warn them when those rules have been breached. This is known as contstraint validation.
Client-side vs Server-side Validation
The majority of JavaScript code written in the early years of the language handled client-side form validation. Even today, developers spend significant time writing functions to check field values. Is this still necessary in modern browsers? Probably not. In most cases, it really depends on what you’re trying to do.
But first, here’s a big warning message:
Client-side validation is a nicety which can prevent common data-entry errors before an app wastes time and bandwidth sending data to a server. It’s not a substitute for server-side validation!
Always sanitize data server-side. Not every request will come from a browser. Even when it does, there’s no guarantee the browser validated the data. Anyone who knows how to open a browser’s developer tools can also bypass your lovingly crafted HTML and JavaScript.
HTML5 Input Fields
HTML offers:
<textarea>
for multiline text boxes<select>
for a drop-down list of options<button>
for … buttons
But you’ll use <input>
most often:
<input type="text" name="username" />
The type
attribute sets the control type, and there’s a large choice of options:
type |
description |
---|---|
button |
a button with no default behavior |
checkbox |
a check/tick box |
color |
a color picker |
date |
a date picker for the year, month, and day |
datetime-local |
a date and time picker |
email |
an email entry field |
file |
a file picker |
hidden |
a hidden field |
image |
a button which displays the image defined by the src attribute |
month |
a month and year picker |
number |
a number entry field |
password |
a password entry field with obscured text |
radio |
a radio button |
range |
a slider control |
reset |
a button that resets all form inputs to their default values (but avoid using this, as it’s rarely useful) |
search |
a search entry field |
submit |
a form submission button |
tel |
a telephone number entry field |
text |
a text entry field |
time |
a time picker with no time zone |
url |
a URL entry field |
week |
a week number and year picker |
The browser falls back to text
if you omit the type
attribute or it doesn’t support an option. Modern browsers have good support for all types, but old browsers will still show a text entry field.
Other useful <input>
attributes include:
attribute | description |
---|---|
accept |
file upload type |
alt |
alternative text for the image types |
autocomplete |
hint for field auto-completion |
autofocus |
focus field on page load |
capture |
media capture input method |
checked |
checkbox/radio is checked |
disabled |
disable the control (it won’t be validated or have its value submitted) |
form |
associate with a form using this ID |
formaction |
URL for submission on submit and image buttons |
inputmode |
data type hint |
list |
ID of <datalist> autocomplete options |
max |
maximum value |
maxlength |
maximum string length |
min |
minimum value |
minlength |
minimum string length |
name |
name of control, as submitted to server |
pattern |
a regular expression pattern, such as [A-Z]+ for one or more uppercase characters |
placeholder |
placeholder text when the field value is empty |
readonly |
the field is not editable, but it will still be validated and submitted |
required |
the field is required |
size |
the size of the control (often overridden in CSS) |
spellcheck |
set true or false spell-checking |
src |
image URL |
step |
incremental values in numbers and ranges |
type |
field type (see above) |
value |
the initial value |
HTML Output Fields
As well as input types, HTML5 provides read-only outputs:
output
: a text result of a calculation or user actionprogress
: a progress bar withvalue
andmax
attributesmeter
: a scale which can change between green, amber, and red depending on the values set for thevalue
,min
,max
,low
,high
, andoptimum
attributes.
Input Labels
Fields should have an associated <label>
, which you can wrap around the element:
<label>your name <input type="text" name="name" /><label>
Or link the field’s id
to the label using a for
attribute:
<label for="nameid">your name</label>
<input type="text" id="nameid" name="name" />
Labels are important for accessibility. You may have encountered forms which use a placeholder
to save screen space:
<input type="text" name="name" value="" placeholder="your name" />
The placeholder text disappears once the user types something — even a single space. It’s better to show a label than force the user remember what the field wanted!
Input Behaviors
Field types and constraint attributes change the browser’s input behavior. For example, a number
input shows a numeric keyboard on mobile devices. The field may show a spinner and keyboard up/down cursor presses will increment and decrement values.
Most field types are obvious, but there are exceptions. For example, credit cards are numeric, but the increment/decrement spinner is useless and it’s too easy to press up or down when entering a 16-digit number. It’s better to use a standard text
type, but set the inputmode
attribute to numeric
, which shows an appropriate keyboard. Setting autocomplete="cc-number"
also suggests any pre-configured or previously entered card numbers.
Using the correct field type
and autocorrect
offers benefits which would be difficult to achieve in JavaScript. For example, some mobile browsers can:
- import credit card details by scanning a card using the camera
- import one-time-codes sent by SMS
Automatic Validation
The browser ensures an input value adheres with the constraints defined by the type
, min
, max
, step
, minlength
, maxlength
, pattern
, and required
attributes. For example:
<input type="number" min="1" max="100" required />
Attempting to submit an empty value prevents form submission and shows the following message in Chrome:
The spinners will not permit values outside the 1 to 100 range. Similar validation messages appear if you type a string which is not a number. All without a single line of JavaScript.
You can stop browser validation by:
- adding a
novalidate
attribute to the<form>
element - adding a
formnovalidate
attribute to the submission button or image
Creating Custom JavaScript Inputs
If you’re writing a new JavaScript-based date entry component, please stop and step away from your keyboard!
Writing custom input controls is difficult. You have to consider the mouse, keyboard, touch, speech, accessibility, screen dimensions, and what happens when JavaScript fails. You’re also creating a different user experience. Perhaps your control is superior to the standard date picker on desktop, iOS, and Android, but the unfamiliar UI will confuse some users.
There are three primary reasons developers choose to create JavaScript-based inputs.
1. Standard controls are difficult to style
CSS styling is limited and often requires hacks, such as overlaying an input with its label’s ::before
and ::after
pseudo-elements. The situation is improving, but question any design which prioritizes form over function.
2. Modern <input>
types are not supported in old browsers
In essence, you’re coding for Internet Explorer. IE users won’t get a date picker but can still enter dates in YYYY-MM-DD
format. If your client insists, then load a polyfill in IE only. There’s no need to burden modern browsers.
3. You require a new input type which has never been implemented before
These situations are rare, but always start with appropriate HTML5 fields. They’re fast, and they work even before the script has loaded. You can progressively enhance fields as necessary. For example, a sprinkling of JavaScript can ensure a calendar event’s end date occurs after a starting date.
In summary: avoid re-inventing HTML controls!
CSS Validation Styling
You can apply the following pseudo-classes to input fields to style them according to the current state:
selector | description |
---|---|
:focus |
the field with focus |
:focus-within |
an element contains a field with focus (yes, it’s a parent selector!) |
:focus-visible |
an element has focus owing to keyboard navigation, so a focus ring or more evident styling is necessary |
:required |
a field with a required attribute |
:optional |
a field without a required attribute |
:valid |
a field that has passed validation |
:invalid |
a field that has not passed validation |
:user-valid |
a field that has passed validation after the user has interacted with it (Firefox only) |
:user-invalid |
a field that hasn’t passed validation after the user has interacted with it (Firefox only) |
:in-range |
the value is within range on a number or range input |
:out-of-range |
the value is out of range on a number or range input |
:disabled |
a field with a disabled attribute |
:enabled |
a field without a disabled attribute |
:read-only |
a field with a read-only attribute |
:read-write: |
a field without a read-only attribute |
:checked |
a checked checkbox or radio button |
:indeterminate |
an indeterminate checkbox or radio state, such as when all radio buttons are unchecked |
:default |
the default submit button or image |
You can style an input’s placeholder
text with the ::placeholder
pseudo-element:
/* blue placeholder on email fields */
input[type="email"]::placeholder {
color: blue;
}
The selectors above have the same specificity, so the order can be important. Consider this example:
input:invalid { color: red; }
input:enabled { color: black; }
Invalid inputs have red text, but it’s only applied to inputs with a disabled
attribute — so all enabled inputs are black.
The browser applies validation styles on page load. For example, in the following code every invalid field is given a red border:
:invalid {
border-color: #900;
}
The user is confronted by a daunting set of red boxes before they interact with the form. Showing validation errors after the first submit or as a value is changed would offer a better experience. That’s where JavaScript steps in …
JavaScript and the Constraint Validation API
The Constraint Validation API provides form customization options which can enhance the standard HTML field checking. You could:
- stop validation until the user interacts with a field or submits the form
- show error messages with custom styling
- provide custom validation that’s impossible in HTML alone. This is often necessary when you need to compare two inputs — such as when you enter an email address or a telephone number, check “new” and “confirm” password fields have the same value, or ensure one date comes after another.
Form Validation
Before using the API, your code should disable default validation and error messages by setting the form’s noValidate
property to true
(the same as adding a novalidate
attribute):
const myform = document.getElementById('myform');
myform.noValidate = true;
You can then add event handlers — such as when the form submits:
myform.addEventListener('submit', validateForm);
The handler can check the whole form is valid using the checkValidity()
or reportValidity()
methods, which return true
when all the form’s inputs are valid. (The difference is that checkValidity()
checks whether any inputs are subject to constraint validation.)
The Mozilla docs explain:
An
invalid
event is also triggered on every invalid field. This does not bubble: handlers must be added to every control that uses it.
// validate form on submission
function validateForm(e) {
const form = e.target;
if (form.checkValidity()) {
// form is valid - make further checks
}
else {
// form is invalid - cancel submit
e.preventDefault();
}
};
A valid form could now incur further validation checks. Similarly, an invalid form could have invalid fields highlighted.
Field Validation
Individual fields have the following constraint validation properties:
-
willValidate
: returnstrue
if the element is a candidate for constraint validation. -
validationMessage
: the validation message. This will be an empty string if the field is valid. -
valitity
: a ValidityState object. This has avalid
property settrue
when the field is valid. If it’sfalse
, one or more of the following properties will betrue
:ValidityState description .badInput
the browser cannot understand the input .customError
a custom validity message has been set .patternMismatch
the value does not match the specified pattern
attribute.rangeOverflow
the value is greater than the max
attribute.rangeUnderflow
the value is less than the min
attribute.stepMismatch
the value does not fit step
attribute rules.tooLong
the string length is greater than the maxlength
attribute.tooShort
the string length is less than the minlength
attribute.typeMismatch
the value is not a valid email or URL .valueMissing
a required
value is empty
Individual fields have the following constraint validation methods:
setCustomValidity(message)
: sets an error message for an invalid field. An empty string must be passed when the field is valid or the field will remain invalid forever.checkValidity()
: returnstrue
when the input is valid. Thevalitity.valid
property does the same thing, butcheckValidity()
also triggers aninvalid
event on the field which could be useful.
The validateForm()
handler function could loop through every field and apply an invalid
class to its parent element where necessary:
function validateForm(e) {
const form = e.target;
if (form.checkValidity()) {
// form is valid - make further checks
}
else {
// form is invalid - cancel submit
e.preventDefault();
// apply invalid class
Array.from(form.elements).forEach(i => {
if (i.checkValidity()) {
// field is valid - remove class
i.parentElement.classList.remove('invalid');
}
else {
// field is invalid - add class
i.parentElement.classList.add('invalid');
}
});
}
};
Assume your HTML defined an email field:
<div>
<label for="email">email</label>
<input type="email" id="email" name="email" required />
<p class="help">Please enter a valid email address</p>
</div>
The script applies an invalid
class to the <div>
when the email is not specified or is invalid. CSS can show or hide the validation message when the form’s submitted:
.help { display: none; }
.invalid .help { display: block; }
.invalid label, .invalid input, .invalid .help {
color: red;
border-color: red;
}
Creating a Custom Form Validator
The following demonstration shows an example contact form which requires a username and either an email address, a telephone number, or both:
See the Pen
Constraint Validation API example by SitePoint (@SitePoint)
on CodePen.
It’s implemented using a generic form validation class named FormValidate
. A form element is passed when instantiating an object. An optional second parameter can be set:
true
to validate each field as the user interacts with itfalse
(the default) to validate all fields after the first submit (field-level validation occurs after that)
// validate contact form
const contactForm = new FormValidate(document.getElementById('contact'), false);
An .addCustom(field, func)
method defines custom validation functions. The following code ensures either the email
or tel
fields are valid (neither have required
attributes):
// custom validation - email and/or telephone
const
email = document.getElementById('email'),
tel = document.getElementById('tel');
contactForm.addCustom(email, f => f.value || tel.value);
contactForm.addCustom(tel, f => f.value || email.value);
A FormValidate
object monitors both of the following:
focusout
events, which then check an individual field- form
submit
events, which then check every field
Both call the .validateField(field)
method, which checks whether a field passes standard constraint validation. When it does, any custom validation functions assigned to that field execute in turn. All must return true
for the field to be valid.
Invalid fields have an invalid
class applied to the field’s parent element, which displays a red help message using CSS.
Finally, the object calls a custom submit
function when the whole form is valid:
// custom submit
contactForm.submit = e => {
e.preventDefault();
alert('Form is valid!\n(open the console)');
const fd = new FormData(e.target);
for (const [name, value] of fd.entries()) {
console.log(name + ': ' + value);
}
}
Alternatively, you can use a standard addEventListener
to handle form submit
events, since FormValidate
prevents further handlers running when the form is invalid.
Form Finesse
Forms are the basis of all web applications and developers spend considerable time manipulating user input. Constraint validation is well supported: browsers can handle most checks and show appropriate input options.
Recommendations:
- Use the standard HTML input types where possible. Set
min
,max
,step
,minlength
,maxlength
,pattern
,required
,inputmode
, andautocomplete
attributes as appropriate. - If necessary, use a little JavaScript to enable custom validation and messages.
- For more complex fields, progressively enhance the standard inputs.
Finally: forget Internet Explorer!
Unless your clients are predominantly IE users, there’s no need to implement your own fallback validation functions. All HTML5 input fields work in IE but may require more user effort. (For example, IE won’t detect when you enter an invalid email address.) You still have to validate data on the server, so consider using that as the basis of IE error checking.