Input Settings
Label Setting
You can easily customize the label of input, you can change it in this line of code:
```handlebars
<label for="name" class="text-[#1A1236] dark:text-gray-100">Name</label>
```

Please make sure that the "FOR" value of the label and "ID" value of input tag are one same value

Placeholder Setting
You can easily customize the placeholder of input, you can change it in this line of code:
```handlebars
<input type="text" name="name" id="name" placeholder="First and Last Name" required class="mt-[10px] bg-gray-200 dark:bg-white rounded-[4px] w-full">
```

Last updated