<?xml version="1.0" encoding="utf-8"?>
<templates>

    <t t-name="l10n_dk_nemhandel.VerificationCodeWidget">
        <div class="row w-50 mt-0 pt-0" t-on-focusout="_save">
            <t t-foreach="[...Array(6).keys()]" t-as="i" t-key="i">
                <input class="verification_code col border border-2 rounded m-1 p-0 text-center"
                       type="text"
                       maxlength="1"
                       t-att-id="i"
                       t-ref="input_{{i}}"
                       t-on-keyup="onKeyUp"
                       t-on-paste="onPaste"/>
            </t>
        </div>
    </t>

</templates>
