Skip to content
Snippets Groups Projects
Commit f3740bfb authored by Julian's avatar Julian
Browse files

Create README.md including a picture

parent 20231964
No related branches found
No related tags found
No related merge requests found
# django_splitted_input
## About
This is a django widget for multiple fixed size inputs for one form field. These could be used for those super fancy
verification code forms. The cursor is moved to the next input field using JS/jQuery.
![django_splitted_input Showcase](django_splitted_input_showcase.png)
## Usage
1. Install `django_splitted_input` and add it to your `INSTALLED_APPS`.
```shell
pip install django-splitted-input
```
In your settings.py:
```python
"django_splitted_input",
```
2. Install `jQuery` using your preferred method (e.g.
[django-yarnpkg](https://pypi.org/project/django-yarnpkg/))
3. Create a form with a `CharField`.
4. Use `SplittedInput` as a widget and supply the sizes of all input fields.
```python
from django import forms
from django_splitted_input import SplittedInput
class VerificationForm(forms.Form):
auth_code = forms.CharField(label='Code', widget=SplittedInput(sizes=(3, 3, 3)))
```
django_splitted_input_showcase.png

42.3 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment