# Inputs >> Input Iban >> Features ||20
```js script
import { html } from '@lion/core';
import { loadDefaultFeedbackMessages } from '@lion/validate-messages';
import { IsCountryIBAN, IsNotCountryIBAN } from '@lion/input-iban';
import '@lion/input-iban/define';
```
## Prefilled
```js preview-story
export const prefilled = () => html`
`;
```
## Faulty Prefilled
```js preview-story
export const faultyPrefilled = () => html`
`;
```
## Country Restrictions
By default, we validate the input to ensure the IBAN is valid.
To get the default feedback message for this default validator, use `loadDefaultFeedbackMessages` from `@lion/form-core`.
In the example below, we show how to use an additional validator that restricts the `input-iban` to IBANs from only certain countries.
```js preview-story
export const countryRestrictions = () => {
loadDefaultFeedbackMessages();
return html`
Demo instructions: you can use NL20 INGB 0001 2345 67
`;
};
```
## Blacklisted Country
By default, we validate the input to ensure the IBAN is valid.
To get the default feedback message for this default validator, use `loadDefaultFeedbackMessages` from `@lion/form-core`.
In the example below, we show how to use an additional validator that blocks IBANs from certain countries.
You can pass a single string value, or an array of strings.
```js preview-story
export const blacklistedCountry = () => {
loadDefaultFeedbackMessages();
return html`
Demo instructions: Try RO 89 RZBR 6997 3728 4864 5577 and watch it fail
`;
};
```