### [How to Make the Form Locker Password Non-Case Sensitive](https://wpforms.com/developers/how-to-make-the-form-locker-password-non-case-sensitive/)

**Published:** July 1, 2022
**Author:** Editorial Team

**Excerpt:** This tutorial will show you how to use a small snippet to allow the password used for the Form Locker addon non-case sensitive. 

**Content:**

## Introduction

Would you like to make the password used for the **Form Locker** addon non-case sensitive? In many cases, you may just want to keep the password required for these forms simple. Using a small code snippet you can easily simplify these passwords and in this tutorial, we’ll walk you through every step!

## Creating the form

To begin, we’re going to create a form with our fields and make sure you’ve enabled the password verification inside the **Settings** of the form.

We’ve used the lowercase text of **iamtheone** as our password.

![begin by creating your form locker form and enabling the password verification before adding the non-case sensitive snippet for the password](https://wpforms.com/wp-content/uploads/2022/07/wpforms-form-locker-password.jpg)

If you need any assistance in creating a Form Locker form, [please check out this documentation](https://wpforms.com/docs/how-to-install-and-use-the-form-locker-addon-in-wpforms/ "How to Install and Use the Form Locker Addon in WPForms").

## Adding the snippet

Now it’s time to add the snippet to your site. If you need any help on how and where to add snippets to your site, [please review this tutorial](https://wpforms.com/developers/how-to-add-custom-php-or-javascript-for-wpforms/ "How to Add Custom PHP or JavaScript for WPForms").

```

/**
 * Ignore case sensitive text in password for the Form Locker forms
 *
 * @link https://wpforms.com/developers/how-to-make-the-form-locker-password-non-case-sensitive/
 */

function wpf_form_locker_password( ) {
?>

**Categories:** Tutorials

**Tags:** Form Locker Addon, Javascript, jQuery, JS, PHP

---

