Otp Input

One-time code input component.

python 6 params

Preview

Arguments
otp_input(name='code', digits=6, label='Verification code', event='verify_code')

Usage

views.py
python
from djust import LiveView
from djust.decorators import event_handler
from djust.components import OtpInput


class MyView(LiveView):
    template_name = "my_template.html"

    def mount(self, request, **kwargs):
        self.component = OtpInput(name='code', digits=6, label='Verification code', event='verify_code')

    @event_handler()
    def verify_code(self, value=None, **kwargs):
        ...  # write to self.component; the re-render carries it
my_template.html
django
{{ component }}

Events this component sends to the view: verify_code.

Needs its script on the page: <script src="{% static 'djust_components/otp-input.js' %}"></script>. djust ships it; without it the markup renders but does not update in the browser.

Parameters

NameTypeDefault
namestr''
digitsint6
eventstr — renames the event''
labelstr''
custom_classstr''
**kwargs— passed to `Component.__init__`: `id=` sets `component.id`, and any other keyword is kept as state
Source & styles
FilePathNotes
moduledjust.components.components.otp_inputSubclass it, or pass custom_class, to change how it renders.
cssdjust_components/components.cssDefines 4 of this component's classes at line 502, 946, 947, 948. Override those rules, or the custom properties they read, in a stylesheet loaded after it.
cssdjust_theming/components.cssDefines 1 of this component's classes at line 1378. Override those rules, or the custom properties they read, in a stylesheet loaded after it.
cssdjust_theming/scaffold.cssDefines 1 of this component's classes at line 444. Override those rules, or the custom properties they read, in a stylesheet loaded after it.